Skip to main content
GET
List all assignments for a human review task

Authorizations

X-API-Key
string
header
required

API key authentication. Include your API key in the X-API-Key header as: X-API-Key YOUR_API_KEY

Example:

Authorization
string
header
required

JWT Bearer token authentication. Include your access token in the Authorization header as: Bearer YOUR_ACCESS_TOKEN

Example:

Path Parameters

task_id
string
required

Query Parameters

include_user_info
boolean
default:false

Whether to include full user information in the response. When true, the 'user' field will be populated with user details.

Response

List of assignments retrieved successfully

created_at
string<date-time>
required
human_review_task_id
string<uuid>
required

UUID of the human review task this assignment belongs to.

Example:

"550e8400-e29b-41d4-a716-446655440000"

id
string<uuid>
required
modified_by
string
required
organization_id
string<uuid>
required

UUID of the organization this assignment belongs to.

Example:

"550e8400-e29b-41d4-a716-446655440000"

status
string
required

Status of the assignment. Valid values: 'pending', 'in_progress', 'completed', 'cancelled'.

Example:

"pending"

updated_at
string<date-time>
required
user_id
string<uuid>
required

UUID of the user assigned to this task.

Example:

"550e8400-e29b-41d4-a716-446655440000"

started_at
string<date-time> | null

Timestamp when the user started working on this task. Null for pending assignments.

Example:

"2024-01-01T00:00:00Z"

user
UserResponse · object | null

Full user information. Only populated when include_user_info query parameter is set to true.