Skip to main content
POST
/
tasks
/
batch
/
assign
Batch reassign tasks
curl --request POST \
  --url https://api.reply.io/v3/tasks/batch/assign \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "ids": [
    123
  ],
  "assignedUserId": 123
}
'
{}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Body

application/json

Request body for batch reassigning tasks.

ids
integer[]
required

Task IDs to reassign (1-100).

Required array length: 1 - 100 elements
assignedUserId
integer
required

User ID to assign the tasks to.

Response

200 - application/json

Dictionary of failed items keyed by task ID. Empty object {} means all succeeded.

{key}
NotProcessedItemResult · object

Per-item error for non-atomic bulk operations. Only failed items are returned in the response dictionary. Items not present in the dictionary succeeded.