v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
Synthetics

Get parent suites for a test

Get the list of parent suites and their status for a given Synthetic test.

get/api/v2/synthetics/tests/{public_id}/parent-suites

Path parameters

public_idstring required

The public ID of the Synthetic test.

Response

OK

Example response

{
  "data": [
    {
      "attributes": {
        "child_name": "My API Test",
        "child_public_id": "xyz-uvw-789",
        "monitor_id": 12345678,
        "name": "My Suite",
        "overall_state_modified": "2024-01-01T00:00:00+00:00",
        "public_id": "abc-def-123"
      },
      "id": "abc-def-123",
      "type": "parent_suite"
    }
  ]
}