Skip to main content
POST
/
api
/
conversation
/
{id}
/
applications
/
unlink
Unlink conversation from applications
curl --request POST \
  --url https://your-instance.example.com/api/conversation/{id}/applications/unlink \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "applicationIds": [
    "66b0a0b0c0d0e0f0a0b0c0d0"
  ]
}
'
{
  "success": true,
  "message": "Applications unlinked",
  "data": {
    "conversationId": "65d3e0f0a0b0c0d0e0f0a0b0",
    "unlinked": [
      "66b0a0b0c0d0e0f0a0b0c0d0"
    ]
  }
}

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
applicationIds
string[]
required

Application _ids to detach from this conversation; the Application records themselves are preserved.

Response

Applications unlinked

success
boolean
message
string
data
object