List actions for a service
curl --request GET \
--url https://api.getdialed.ai/v1/catalog/services/{service_id}/actionsimport requests
url = "https://api.getdialed.ai/v1/catalog/services/{service_id}/actions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.getdialed.ai/v1/catalog/services/{service_id}/actions', 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/catalog/services/{service_id}/actions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/catalog/services/{service_id}/actions"
req, _ := http.NewRequest("GET", url, nil)
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/catalog/services/{service_id}/actions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/catalog/services/{service_id}/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"items": [
{
"batch_capable": true,
"batch_settings": {
"default_key_fields": [
"number1"
],
"max_records_per_call": 50000,
"merge_partition": "list_and_schema",
"record_identifier_field": "number1",
"supports_partial_success": true
},
"credential_optional": false,
"description": "Add contact records to a Five9 calling list",
"id": "five9__configuration_service__add_to_list",
"implementation": "handler",
"input_shape": "either",
"name": "Add to list",
"output_schema": {
"records_added": {
"description": "How many records were accepted.",
"sensitivity": "none",
"type": "number"
},
"success": {
"description": "Whether the upload was accepted.",
"sensitivity": "none",
"type": "boolean"
}
},
"parameters": {
"key_fields": {
"default": [
"number1"
],
"description": "The columns that identify an existing contact, used to decide whether a record is added or updated.",
"group": "Matching",
"items": {
"description": "A CRM column name.",
"sensitivity": "none",
"type": "string"
},
"order": 3,
"sensitivity": "none",
"type": "array"
},
"list_name": {
"description": "The calling list the records are added to.",
"example": "Callbacks",
"group": "Destination",
"order": 1,
"required": true,
"sensitivity": "none",
"type": "string"
},
"records": {
"binding_sources": [
"record_set"
],
"description": "The contact records to add.",
"group": "Records",
"items": {
"description": "One contact record, keyed by CRM column name.",
"sensitivity": "pii",
"type": "object"
},
"order": 2,
"sensitivity": "pii",
"type": "array"
}
},
"platform_id": "five9",
"retry_safety": "at_most_once",
"sample_output": {
"records_added": 2,
"success": true
},
"service_id": "five9__configuration_service",
"status": "active",
"tags": [
"lists",
"write"
],
"version": "1.0"
}
],
"limit": 123,
"skip": 123,
"total": 123,
"next_cursor": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Catalog — /v1/catalog
List actions for a service
List the catalog actions a service exposes. Sort by sort_by/order and paginate with limit/skip. No authentication required. Returns an empty page for an unknown service.
GET
/
catalog
/
services
/
{service_id}
/
actions
List actions for a service
curl --request GET \
--url https://api.getdialed.ai/v1/catalog/services/{service_id}/actionsimport requests
url = "https://api.getdialed.ai/v1/catalog/services/{service_id}/actions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.getdialed.ai/v1/catalog/services/{service_id}/actions', 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/catalog/services/{service_id}/actions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/catalog/services/{service_id}/actions"
req, _ := http.NewRequest("GET", url, nil)
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/catalog/services/{service_id}/actions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/catalog/services/{service_id}/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"items": [
{
"batch_capable": true,
"batch_settings": {
"default_key_fields": [
"number1"
],
"max_records_per_call": 50000,
"merge_partition": "list_and_schema",
"record_identifier_field": "number1",
"supports_partial_success": true
},
"credential_optional": false,
"description": "Add contact records to a Five9 calling list",
"id": "five9__configuration_service__add_to_list",
"implementation": "handler",
"input_shape": "either",
"name": "Add to list",
"output_schema": {
"records_added": {
"description": "How many records were accepted.",
"sensitivity": "none",
"type": "number"
},
"success": {
"description": "Whether the upload was accepted.",
"sensitivity": "none",
"type": "boolean"
}
},
"parameters": {
"key_fields": {
"default": [
"number1"
],
"description": "The columns that identify an existing contact, used to decide whether a record is added or updated.",
"group": "Matching",
"items": {
"description": "A CRM column name.",
"sensitivity": "none",
"type": "string"
},
"order": 3,
"sensitivity": "none",
"type": "array"
},
"list_name": {
"description": "The calling list the records are added to.",
"example": "Callbacks",
"group": "Destination",
"order": 1,
"required": true,
"sensitivity": "none",
"type": "string"
},
"records": {
"binding_sources": [
"record_set"
],
"description": "The contact records to add.",
"group": "Records",
"items": {
"description": "One contact record, keyed by CRM column name.",
"sensitivity": "pii",
"type": "object"
},
"order": 2,
"sensitivity": "pii",
"type": "array"
}
},
"platform_id": "five9",
"retry_safety": "at_most_once",
"sample_output": {
"records_added": 2,
"success": true
},
"service_id": "five9__configuration_service",
"status": "active",
"tags": [
"lists",
"write"
],
"version": "1.0"
}
],
"limit": 123,
"skip": 123,
"total": 123,
"next_cursor": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Path Parameters
Query Parameters
Available options:
name Sort direction for list endpoints that accept a sort_by field.
Available options:
asc, desc Required range:
1 <= x <= 500Required range:
x >= 0