Skip to main content
PUT
/
api
/
conversation
/
{id}
/
resolve
Toggle resolve/unresolve conversation
curl --request PUT \
  --url https://your-instance.example.com/api/conversation/{id}/resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isResolved": true
}
'
{
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
isResolved
boolean
required

Response

Resolve state toggled

message
string
data
object