Generates an ActionCable real-time connection token and URL to subscribe to live updates (incoming messages, agent typing indicators, conversation state changes).
Get Real-time WebSocket Token
Updated about 2 hours ago•1 min read
GET
/v1/me/cable_token
Responses
200WebSocket connection credentials
{
"data": {
"connection_token": "cbl_tok_7a9f2...",
"action_cable_url": "wss://ws.deskbolic.com",
"channels": [
{
"name": "SubscriptionChannel",
"params": {
"connection_token": "cbl_tok_7a9f2..."
}
}
]
}
}