List everything holding this Domain's dispatch
curl --request GET \
--url https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses', 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://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"cause": "admin_request",
"created_at": "2026-07-29T12:00:00Z",
"created_by": "user_11223344",
"expires_at": "2026-07-29T13:00:00Z",
"extensions": [],
"id": "pause_9f2c1a7b3d4e5f60",
"reason": "Provider maintenance window",
"scope": "global",
"status": "active"
}
],
"limit": 123,
"skip": 123,
"total": 123,
"next_cursor": "<string>"
}{
"detail": "Authentication required"
}{
"detail": "Domain not found"
}{
"detail": "margins['Upload'] must be between 1 and 100"
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Five9 Domains — /v1/platforms/five9
List everything holding this Domain's dispatch
List this Domain’s pause records — admin holds and automatic rate-limit backoffs alike, each with its machine-readable cause. By default only active holds return; include_released=true adds released history (release is not deletion). Sort with sort_by/order (default newest-first), paginate with limit/skip. Readable by any organization member. Cross-tenant access returns 404, never 403.
GET
/
platforms
/
five9
/
domains
/
{tenancy_id}
/
pauses
List everything holding this Domain's dispatch
curl --request GET \
--url https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses', 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://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/platforms/five9/domains/{tenancy_id}/pauses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"cause": "admin_request",
"created_at": "2026-07-29T12:00:00Z",
"created_by": "user_11223344",
"expires_at": "2026-07-29T13:00:00Z",
"extensions": [],
"id": "pause_9f2c1a7b3d4e5f60",
"reason": "Provider maintenance window",
"scope": "global",
"status": "active"
}
],
"limit": 123,
"skip": 123,
"total": 123,
"next_cursor": "<string>"
}{
"detail": "Authentication required"
}{
"detail": "Domain not found"
}{
"detail": "margins['Upload'] must be between 1 and 100"
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Authorizations
APIKeyHeaderHTTPBearer
Path Parameters
Query Parameters
Allowed sort fields when listing dispatch pauses.
Available options:
created_at, expires_at Sort direction for list endpoints that accept a sort_by field.
Available options:
asc, desc Required range:
1 <= x <= 500Required range:
x >= 0