List all assignments for a human review task
List all assignments for a human review task.
Returns a list of all assignments (user assignments) for the specified human review task. This includes all users who have been assigned to review the task, along with their assignment status and when they started working on it.
Context:
- Returns all assignments for the specified task
- Includes assignment status (pending, in_progress, completed, cancelled)
- Includes started_at timestamp for assignments that have been started
- Only accessible if the task exists and user has access to the organization
Use Cases:
- View all reviewers assigned to a task
- Track which reviewers have started or completed their review
- Monitor assignment status across all reviewers
- Display assignment information in task management UI
Related Endpoints:
- GET /human-review-tasks - List all tasks assigned to current user
- POST /human-review-tasks//start - Start working on a task
- POST /human-review-tasks//complete - Complete a task
Authorizations
API key authentication. Include your API key in the X-API-Key header as: X-API-Key YOUR_API_KEY
Example:
JWT Bearer token authentication. Include your access token in the Authorization header as: Bearer YOUR_ACCESS_TOKEN
Example:
Path Parameters
Query Parameters
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
UUID of the human review task this assignment belongs to.
"550e8400-e29b-41d4-a716-446655440000"
UUID of the organization this assignment belongs to.
"550e8400-e29b-41d4-a716-446655440000"
Status of the assignment. Valid values: 'pending', 'in_progress', 'completed', 'cancelled'.
"pending"
UUID of the user assigned to this task.
"550e8400-e29b-41d4-a716-446655440000"
Timestamp when the user started working on this task. Null for pending assignments.
"2024-01-01T00:00:00Z"
Full user information. Only populated when include_user_info query parameter is set to true.