List current escalation queue items
curl --request GET \
--url https://your-instance.example.com/api/escalation-dashboard/queue \
--header 'Authorization: Bearer <token>'import requests
url = "https://your-instance.example.com/api/escalation-dashboard/queue"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://your-instance.example.com/api/escalation-dashboard/queue', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://your-instance.example.com/api/escalation-dashboard/queue",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://your-instance.example.com/api/escalation-dashboard/queue"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://your-instance.example.com/api/escalation-dashboard/queue")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://your-instance.example.com/api/escalation-dashboard/queue")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"conversationId": "8c3d4e0f9a1b3c4d5e6f7a8b9c01",
"contactId": "9d4e5f1a2b3c4d5e6f7a8b9c0d12",
"contactName": "Alex Morgan",
"contactPhone": "+14165550100",
"automationId": "5f7b1c2e8a1d4e0012c3b4a5",
"automationName": "Inbound Support",
"queuedAt": "2026-05-18T14:25:31.000Z",
"waitTimeMs": 331000,
"hasAccess": true
}
]
}{
"success": false,
"message": "Access denied"
}{
"success": false,
"message": "Access denied"
}Escalation Dashboard
List current escalation queue items
Returns the live escalation queue (contacts waiting for an agent), enriched with contact / automation metadata and per-item wait time in milliseconds. Sorted oldest-waiting first. Optionally scoped to a department by filtering on automations that escalate to that department.
GET
/
api
/
escalation-dashboard
/
queue
List current escalation queue items
curl --request GET \
--url https://your-instance.example.com/api/escalation-dashboard/queue \
--header 'Authorization: Bearer <token>'import requests
url = "https://your-instance.example.com/api/escalation-dashboard/queue"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://your-instance.example.com/api/escalation-dashboard/queue', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://your-instance.example.com/api/escalation-dashboard/queue",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://your-instance.example.com/api/escalation-dashboard/queue"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://your-instance.example.com/api/escalation-dashboard/queue")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://your-instance.example.com/api/escalation-dashboard/queue")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"conversationId": "8c3d4e0f9a1b3c4d5e6f7a8b9c01",
"contactId": "9d4e5f1a2b3c4d5e6f7a8b9c0d12",
"contactName": "Alex Morgan",
"contactPhone": "+14165550100",
"automationId": "5f7b1c2e8a1d4e0012c3b4a5",
"automationName": "Inbound Support",
"queuedAt": "2026-05-18T14:25:31.000Z",
"waitTimeMs": 331000,
"hasAccess": true
}
]
}{
"success": false,
"message": "Access denied"
}{
"success": false,
"message": "Access denied"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Optional department filter. ADMIN/SUPERADMIN may pass any departmentId; DEPARTMENT_HEAD is implicitly scoped to their own department and any other value is ignored.
⌘I