Skip to main content
POST
/
v2
/
partners
/
bulk
/
reassign
Bulk Reassign Partners
curl --request POST \
  --url https://api.example.com/v2/partners/bulk/reassign \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "partner_ids": [
    "<string>"
  ],
  "assignee_id": "<string>",
  "all_open": true,
  "all_assigned": true,
  "all_previous_assignee": true,
  "all_unassigned": true
}
'
{
  "reassigned_count": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request schema for bulk reassigning partners to a different assignee.

partner_ids
string[]
required
Minimum array length: 1
assignee_id
string | null
required

New assignee ID, or null to unassign

all_open
boolean
required

Reassign all open tasks

all_assigned
boolean
required

Reassign tasks that are currently assigned

all_previous_assignee
boolean
required

Reassign tasks assigned to the partner's previous assignee

all_unassigned
boolean
required

Reassign tasks that are currently unassigned

Response

Successful Response

Response schema for bulk reassignment.

reassigned_count
integer
required
Required range: x >= 0