curl -X POST "https://your-collabase.ch/api/v1/test-management/my-space/proj-abc123/runs" \
-H "Authorization: Bearer cba_live_xYz123ABCD..." \
-H "Content-Type: application/json" \
-d '{
"name": "Sprint 42 — Regression"
}'
{
"id": "run-001",
"name": "Sprint 42 — Regression",
"status": "IN_PROGRESS",
"testProjectId": "proj-abc123",
"createdAt": "2025-04-01T09:00:00.000Z"
}
Start a new test run and automatically enrol all ready test cases.
curl -X POST "https://your-collabase.ch/api/v1/test-management/my-space/proj-abc123/runs" \
-H "Authorization: Bearer cba_live_xYz123ABCD..." \
-H "Content-Type: application/json" \
-d '{
"name": "Sprint 42 — Regression"
}'
{
"id": "run-001",
"name": "Sprint 42 — Regression",
"status": "IN_PROGRESS",
"testProjectId": "proj-abc123",
"createdAt": "2025-04-01T09:00:00.000Z"
}
READY are automatically enrolled at the moment the run is created. The run begins immediately with status IN_PROGRESS.
READY status are enrolled. Cases in DRAFT or other statuses are excluded. You must hold write access to the target space.Sprint 42 — Regression).IN_PROGRESS on creation.curl -X POST "https://your-collabase.ch/api/v1/test-management/my-space/proj-abc123/runs" \
-H "Authorization: Bearer cba_live_xYz123ABCD..." \
-H "Content-Type: application/json" \
-d '{
"name": "Sprint 42 — Regression"
}'
{
"id": "run-001",
"name": "Sprint 42 — Regression",
"status": "IN_PROGRESS",
"testProjectId": "proj-abc123",
"createdAt": "2025-04-01T09:00:00.000Z"
}
Was this page helpful?