Allocate a task to a user
Tasks
Allocate a task to a user
Allocate a task to a specific user. If no user_id is provided, the task is allocated to the currently authenticated user. Sets the task status to ALLOCATED and records the assignment timestamp.
POST
Allocate a task to a user
Request Structure
Key Fields
| Field | Required | Description |
|---|---|---|
user_id | No | User ID to allocate the task to. Defaults to the current authenticated user if omitted |
Behavior
- Sets task status to ALLOCATED
- Records
assigned_attimestamp - Associates the task with the specified (or current) user
- Returns 204 No Content on success
- Returns 422 if the task is already completed or cannot be allocated
Authorizations
OAuth 2.0 authentication. Use the client credentials or authorization code flow to obtain an access token.
The subdomain/tenant name identifying which tenant's data to access. Required for all API requests.
Path Parameters
The unique identifier of the task to allocate
Body
application/json
User ID to allocate the task to. Defaults to the current authenticated user if omitted
Response
Operation completed successfully with no content to return

