Skip to main content
PUT
/
contacts
/
owner
Change contacts owner
curl --request PUT \
  --url https://api.reply.io/v3/contacts/owner \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "contactIds": [
    123
  ],
  "userId": 123,
  "reassignTasks": false
}
'
{
  "isSuccess": true,
  "affectedIds": [
    123
  ]
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Body

application/json
contactIds
integer[]
required

Array of contact IDs to reassign

userId
integer
required

Target user ID to assign as owner

reassignTasks
boolean
default:false

Whether to also reassign tasks associated with these contacts

Response

Owner changed successfully

isSuccess
boolean
affectedIds
integer[]

IDs of contacts whose owner was changed