Get available agent information
Retrieves the current Omnichannel agent information.
URL | Requires Authentication | HTTP Method |
/v1/omnichannel/agents/available | Yes | GET |
Argument | Data Type | Required |
count | number | No |
offset | number | No |
sort | string | No |
query | string | No |
text | string | No |
includeExtension | string | No |
curl --location --request GET 'localhost:3000/api/v1/omnichannel/extensions?count=10&offset=10' \
--header 'X-Auth-Token: xS8jnLS2YzVy-_w8T_S0WnQm5SnADjACa7gbXmcOcLY' \
--header 'X-User-Id: 6vHSSqdBHdm2R4gfi' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "ByehQjC44FwMeiLbX"
}'
{
"agent": {
"_id": "XycfA5CetCPuEjqxw",
"username": "test.agent",
"name": "agent123",
"status": "online",
"statusLivechat": "online",
"emails": [
{
"address": "[email protected]",
"verified": true
}
],
"livechat": {
"maxNumberSimultaneousChat": "5"
}
},
"success": true
}
401 Unauthorized
Last modified 3mo ago