Skip to main content
GET
/
v2
/
workspaces
/
{workspace_id}
/
deriver
/
status
Get Deriver Status
curl --request GET \
  --url http://localhost:8000/v2/workspaces/{workspace_id}/deriver/status \
  --header 'Authorization: Bearer <token>'
{
  "total_work_units": 123,
  "completed_work_units": 123,
  "in_progress_work_units": 123,
  "pending_work_units": 123,
  "sessions": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

ID of the workspace

Query Parameters

observer_id
string | null

Optional observer ID to filter by

sender_id
string | null

Optional sender ID to filter by

session_id
string | null

Optional session ID to filter by

Response

Successful Response

total_work_units
integer
required

Total work units

completed_work_units
integer
required

Completed work units

in_progress_work_units
integer
required

Work units currently being processed

pending_work_units
integer
required

Work units waiting to be processed

sessions
Sessions · object

Per-session status when not filtered by session