Skip to main content
PUT
/
api
/
queues
/
v1
/
{queueId}
/
tasks
/
{taskId}
/
assign
Transfer Task to Another User
curl --request PUT \
  --url https://{instance}.domo.com/api/queues/v1/{queueId}/tasks/{taskId}/assign \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
{
  "tasksId": [],
  "type": "USER",
  "userId": "700632941"
}
'
{}

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo Developer Token for authentication

Path Parameters

queueId
string
required

The ID of the queue

taskId
string
required

The ID of the task

Body

application/json
type
enum<string>
required

Type of entity to assign to

Available options:
USER,
GROUP
Example:

"USER"

userId
string
required

User or group ID to assign the task to

Example:

"700632941"

tasksId
string[]

Array of task IDs

Example:
[]

Response

The transferred task

The response is of type object.