Test Sessions API
Manage test execution sessions.
List Sessions
GET /v1/test-sessions
Get Session
GET /v1/test-sessions/:id
Create Session
POST /v1/test-sessions
Content-Type: application/json
{
"name": "Sprint 23 Regression",
"projectId": "proj-123",
"testCases": ["tc-001", "tc-002"]
}
Update Session
PUT /v1/test-sessions/:id
Record Result
POST /v1/test-sessions/:id/results
Content-Type: application/json
{
"testCaseId": "tc-001",
"status": "pass",
"notes": "Executed successfully"
}