Returns detailed information about a specific release, including associated executions.
Use this endpoint when you need to:
curl -X GET https://api.hawzu.com/api/v1/workspace/{workspaceId}/project/{projectId}/releases/{releaseId} \
-H "Authorization: Bearer YOUR_API_TOKEN"| Parameter | Required | Description |
|---|---|---|
workspaceId | ✅ Yes | The ID of the workspace to get the release for |
projectId | ✅ Yes | The ID of the project to get the release for |
releaseId | ✅ Yes | The ID of the release to get |
| Header | Required | Description |
|---|---|---|
Authorization | ✅ Yes | Bearer token in the format Bearer <API_TOKEN> |
{
"data": {
"id": "rel_2001",
"project_id": "proj_101",
"name": "Release 2.1",
"version": "2.1.0",
"status": "IN_PROGRESS",
"created_at": "2026-02-01T00:00:00Z",
"closed_at": "2026-02-11T15:00:00Z",
"execution_summary": {
"total_executions": 3,
"passed": 1,
"failed": 1,
"blocked": 1,
"in_progress": 0
},
"executions": [
{
"id": "exec_5001",
"name": "Sanity Run",
"status": "PASSED",
"created_at": "2026-02-05T10:00:00Z",
"finalized_at": "2026-02-05T10:15:00Z"
},
{
"id": "exec_5002",
"name": "Regression Run",
"status": "PASSED",
"created_at": "2026-02-07T09:00:00Z",
"finalized_at": "2026-02-07T09:45:00Z"
}
]
}
}