Get Task State Transitions
Retrieves the complete state transition history for a specific HDP task, showing all status changes over time. This endpoint does not require authentication.Endpoint
Path Parameters
| Parameter | Type | Description |
|---|---|---|
| task_uuid | string | The unique identifier (UUID) of the task |
Example Request
Response
Success Response (200 OK)
Not Found Response (404)
Response Fields
| Field | Type | Description |
|---|---|---|
| taskId | string | The unique identifier of the task |
| state_transitions | array | Array of state transition objects, ordered chronologically |
State Transition Object Fields
| Field | Type | Description |
|---|---|---|
| id | string | Unique identifier of the state transition |
| task_id | string | The task UUID this transition belongs to |
| from_status | string | null | Previous status (null for initial state) |
| to_status | string | New status after the transition |
| created_at | string | ISO 8601 timestamp of when the transition occurred |
Notes
- No authentication is required for this endpoint
- State transitions are ordered chronologically (oldest first)
- The first transition will have
from_statusasnull(initial state) - Useful for debugging and understanding task execution flow
- Each status change in the task lifecycle is recorded as a separate transition

