List test suite runs
GET /test_suite_runs
curl -u USER_ID:USER_API_TOKEN https://app.saturnci.com/api/v1/test_suite_runs
Response:
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "Running",
"branch": "main",
"commit_sha": "abc123"
},
{
"id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"status": "Passed",
"branch": "main",
"commit_sha": "def456"
}
]
Get a specific test suite run
GET /test_suite_runs/{id}
curl -u USER_ID:USER_API_TOKEN https://app.saturnci.com/api/v1/test_suite_runs/{id}
Response:
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "Running",
"branch": "main",
"commit_sha": "abc123",
"created_at": "2025-01-15T10:30:00Z"
}