Test cases available from webhooks

Mabl webhooks now return your configured Test Cases in test run pre and post execution payloads. This is useful for integrating with your test case management tools.

For example, journey_executions[0].test_cases would include the test case ids for the first test run as seen in the below truncated webhook payload:

//...
"journey_executions": [
{
  "status": "succeeded",
  "name": "My Awesome Test!",
  //...
  "test_cases": [
    {
      "id": "blue-42"
    },
    {
      "id": "red-87"
    }
  ]
},
//...

See the mabl webhook docs for complete webhook details.