Skip to main content
PUT
/
v1
/
quickstarts
/
assignments
/
bulk
Bulk update assignments
curl --request PUT \
  --url https://api.avidoai.com/v1/quickstarts/assignments/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-application-id: <api-key>' \
  --data '
{
  "assignments": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "assignedTo": "user_789012",
      "stage": "KB_REVIEW"
    }
  ]
}
'
{
  "count": 5
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

x-application-id
string
header
required

Your unique Avido Application ID

Body

application/json

Request body for bulk updating assignments

assignments
object[]
required

Array of assignments to update

Required array length: 1 - 1000 elements

Response

Successfully updated assignments

Response for bulk assignment operations

count
integer
required

Number of assignments affected

Required range: 0 <= x <= 9007199254740991
Example:

5