Skip to main content
PUT
/
api
/
v1
/
conversations
/
{uuid}
/
assignee
/
user
Update User Assignee
curl --request PUT \
  --url http://localhost:8080/api/v1/conversations/{uuid}/assignee/user \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "assignee_id": 123
}'
{
  "status": "success",
  "data": true
}

Authorizations

Authorization
string
header
required

Basic authentication using base64 encoded API key and secret. Format: Authorization: Basic <base64(api_key:api_secret)>

Path Parameters

uuid
string
required

Body

application/json

User assignment details

assignee_id
integer
required

User ID to assign

Response

User assignee updated successfully

status
string
Example:

"success"

data
boolean
Example:

true

I