Channel Runtime Status
Use this endpoint to read runtime status for channels controlled by the authenticated API key owner.
Each item contains only:
channelNameisPrimaryisLiveisAiInChat
GET /v1/channels/status
Request
- Method/Path:
GET /v1/channels/status - Headers:
Authorization: Bearer <API_KEY>
Responses
200 OKwith an array of channel status objects401 Unauthorizedif the API key is invalid
Example
curl https://api.getailicia.com/v1/channels/status \
-H "Authorization: Bearer ${API_KEY}"[
{
"channelName": "mychannel",
"isPrimary": true,
"isLive": true,
"isAiInChat": true
},
{
"channelName": "mysecondchannel",
"isPrimary": false,
"isLive": false,
"isAiInChat": false
}
]