Returns the complete execution record, including:
TEST_RUN or RELEASE)If the execution does not exist or is not accessible to the authenticated actor, a 404 Not Found response is returned.
This endpoint does not modify any data.
Use this endpoint when you need to:
curl -X GET https://api.hawzu.com/api/v1/workspace/{workspaceId}/project/{projectId}/executions/{executionId} \
-H "Authorization: Bearer YOUR_API_TOKEN"| Parameter | Required | Description |
|---|---|---|
workspaceId | ✅ Yes | The ID of the workspace to get the execution for |
projectId | ✅ Yes | The ID of the project to get the execution for |
executionId | ✅ Yes | The ID of the execution to get |
| Header | Required | Description |
|---|---|---|
Authorization | ✅ Yes | Bearer token in the format Bearer <API_TOKEN> |
{
"data": {
"id": "exec_5001",
"execution_type": "TEST_RUN",
"name": "CI regression run",
"status": "FAILED",
"project_id": "proj_101",
"release_id": null,
"created_at": "2026-02-11T12:00:00Z",
"finalized_at": "2026-02-11T12:10:00Z",
"steps": [
{
"step_id": "step_1",
"order": 1,
"testcase_id": "tc_101",
"status": "PASSED",
"updated_at": "2026-02-11T12:05:00Z"
},
{
"step_id": "step_2",
"order": 2,
"testcase_id": "tc_101",
"status": "FAILED",
"updated_at": "2026-02-11T12:07:00Z"
}
]
}