List Five9 Domains
curl --request GET \
--url https://api.getdialed.ai/v1/platforms/five9/domains \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getdialed.ai/v1/platforms/five9/domains"
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', 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",
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"
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")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/platforms/five9/domains")
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": [
{
"api_host": "api.five9.com",
"bucket_map": {
"five9__configuration_service__add_to_list": {
"operation_types": [
"Upload"
],
"resolved": true
}
},
"buckets": {
"Upload": {
"caps": {
"60": 20,
"3600": 400,
"86400": 2000
},
"effective": {
"60": 16,
"3600": 320,
"86400": 1600
},
"label": "Uploading (batch)",
"margin_pct": 80,
"max_records_per_request": 50000,
"min_interval_ms": 250,
"observed_at": "2026-07-25T18:00:00Z",
"source": "live"
}
},
"counters_synced_at": "2026-07-25T18:00:00Z",
"created_at": "2026-07-25T17:00:00Z",
"domain_id": "100200",
"domain_name": "Acme Corp",
"id": "ten_9f2c1a7b3d4e5f60",
"lane_order": {
"bulk": [
"five9__configuration_service__add_to_list"
]
},
"lane_overrides": {
"five9__configuration_service__add_to_list": "bulk"
},
"org_id": "org_a1b2c3d4",
"platform_id": "five9",
"status": "active",
"sync_status": "live",
"tenancy_unit": {
"key_field": "domain_id",
"key_source": "getVCCConfiguration.domainId",
"name": "Domain",
"plural": "Domains"
},
"updated_at": "2026-07-25T18:00:00Z"
}
],
"limit": 123,
"skip": 123,
"total": 123,
"next_cursor": "<string>"
}{
"detail": "Authentication required"
}{
"detail": "margins['Upload'] must be between 1 and 100"
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Five9 Domains — /v1/platforms/five9
List Five9 Domains
List the calling organization’s Five9 Domains. A Domain is the provider-tenant record that anchors rate limits, per-action lane placement and the safety margin — N credentials against the same Domain share ONE budget. Each item carries the platform’s own vocabulary in tenancy_unit, its raw per-window provider caps, the operator’s margin_pct, and the effective budget computed from both. Sort with sort_by/order (default newest-first), paginate with limit/skip. Readable by any organization member.
GET
/
platforms
/
five9
/
domains
List Five9 Domains
curl --request GET \
--url https://api.getdialed.ai/v1/platforms/five9/domains \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getdialed.ai/v1/platforms/five9/domains"
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', 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",
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"
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")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/platforms/five9/domains")
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": [
{
"api_host": "api.five9.com",
"bucket_map": {
"five9__configuration_service__add_to_list": {
"operation_types": [
"Upload"
],
"resolved": true
}
},
"buckets": {
"Upload": {
"caps": {
"60": 20,
"3600": 400,
"86400": 2000
},
"effective": {
"60": 16,
"3600": 320,
"86400": 1600
},
"label": "Uploading (batch)",
"margin_pct": 80,
"max_records_per_request": 50000,
"min_interval_ms": 250,
"observed_at": "2026-07-25T18:00:00Z",
"source": "live"
}
},
"counters_synced_at": "2026-07-25T18:00:00Z",
"created_at": "2026-07-25T17:00:00Z",
"domain_id": "100200",
"domain_name": "Acme Corp",
"id": "ten_9f2c1a7b3d4e5f60",
"lane_order": {
"bulk": [
"five9__configuration_service__add_to_list"
]
},
"lane_overrides": {
"five9__configuration_service__add_to_list": "bulk"
},
"org_id": "org_a1b2c3d4",
"platform_id": "five9",
"status": "active",
"sync_status": "live",
"tenancy_unit": {
"key_field": "domain_id",
"key_source": "getVCCConfiguration.domainId",
"name": "Domain",
"plural": "Domains"
},
"updated_at": "2026-07-25T18:00:00Z"
}
],
"limit": 123,
"skip": 123,
"total": 123,
"next_cursor": "<string>"
}{
"detail": "Authentication required"
}{
"detail": "margins['Upload'] must be between 1 and 100"
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Authorizations
APIKeyHeaderHTTPBearer
Query Parameters
Allowed sort fields when listing Five9 Domains.
Available options:
created_at, domain_name Sort direction for list endpoints that accept a sort_by field.
Available options:
asc, desc Required range:
1 <= x <= 500Required range:
x >= 0