Get an action
curl --request GET \
--url https://api.getdialed.ai/v1/catalog/actions/{action_id}import requests
url = "https://api.getdialed.ai/v1/catalog/actions/{action_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.getdialed.ai/v1/catalog/actions/{action_id}', 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/actions/{action_id}",
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/actions/{action_id}"
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/actions/{action_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/catalog/actions/{action_id}")
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{
"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"
}{
"detail": "Action not found"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Catalog — /v1/catalog
Get an action
Fetch a single catalog action by id. No authentication required.
GET
/
catalog
/
actions
/
{action_id}
Get an action
curl --request GET \
--url https://api.getdialed.ai/v1/catalog/actions/{action_id}import requests
url = "https://api.getdialed.ai/v1/catalog/actions/{action_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.getdialed.ai/v1/catalog/actions/{action_id}', 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/actions/{action_id}",
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/actions/{action_id}"
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/actions/{action_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getdialed.ai/v1/catalog/actions/{action_id}")
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{
"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"
}{
"detail": "Action not found"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "Rate limit exceeded: 100 per 1 minute"
}Path Parameters
Response
Successful Response
Available options:
handler, composite Available options:
scalar, record_set, either Available options:
idempotent, at_most_once, unsafe Show child attributes
Show child attributes
Show child attributes
Show child attributes