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

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Body

application/json

Request body for batch reassigning tasks.

ids
integer[]
required

Task IDs to reassign (1-100).

Required array length: 1 - 100 elements
userId
integer
required

User ID to assign the tasks to. Must be a member of the caller's team.

Response

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

Possible per-item error codes:

errorMeaning
1NotFound — task does not exist or caller lacks permission to assign it
{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.