Skip to main content
POST
/
api
/
conversation
/
{id}
/
applications
/
link
Link conversation to applications
curl --request POST \
  --url https://your-instance.example.com/api/conversation/{id}/applications/link \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "applicationIds": [
    "66b0a0b0c0d0e0f0a0b0c0d0"
  ]
}
'
{
  "success": true,
  "message": "Applications linked",
  "data": {
    "conversationId": "65d3e0f0a0b0c0d0e0f0a0b0",
    "linked": [
      "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 attach to this conversation; each must be a valid ObjectId in the caller's organization.

Response

Applications linked

success
boolean
message
string
data
object