curl --request POST \
--url https://api.cloudtalk.io/v1/dialer/surveys \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Post-call qualification",
"questions": [
{
"label": "Was the customer interested?",
"type": "radio",
"is_required": true,
"display_order": 0,
"options": [
{
"label": "Yes",
"display_order": 0
},
{
"label": "No",
"display_order": 1
}
]
}
]
}
'import requests
url = "https://api.cloudtalk.io/v1/dialer/surveys"
payload = {
"name": "Post-call qualification",
"questions": [
{
"label": "Was the customer interested?",
"type": "radio",
"is_required": True,
"display_order": 0,
"options": [
{
"label": "Yes",
"display_order": 0
},
{
"label": "No",
"display_order": 1
}
]
}
]
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Post-call qualification',
questions: [
{
label: 'Was the customer interested?',
type: 'radio',
is_required: true,
display_order: 0,
options: [{label: 'Yes', display_order: 0}, {label: 'No', display_order: 1}]
}
]
})
};
fetch('https://api.cloudtalk.io/v1/dialer/surveys', 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.cloudtalk.io/v1/dialer/surveys",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Post-call qualification',
'questions' => [
[
'label' => 'Was the customer interested?',
'type' => 'radio',
'is_required' => true,
'display_order' => 0,
'options' => [
[
'label' => 'Yes',
'display_order' => 0
],
[
'label' => 'No',
'display_order' => 1
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cloudtalk.io/v1/dialer/surveys"
payload := strings.NewReader("{\n \"name\": \"Post-call qualification\",\n \"questions\": [\n {\n \"label\": \"Was the customer interested?\",\n \"type\": \"radio\",\n \"is_required\": true,\n \"display_order\": 0,\n \"options\": [\n {\n \"label\": \"Yes\",\n \"display_order\": 0\n },\n {\n \"label\": \"No\",\n \"display_order\": 1\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cloudtalk.io/v1/dialer/surveys")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Post-call qualification\",\n \"questions\": [\n {\n \"label\": \"Was the customer interested?\",\n \"type\": \"radio\",\n \"is_required\": true,\n \"display_order\": 0,\n \"options\": [\n {\n \"label\": \"Yes\",\n \"display_order\": 0\n },\n {\n \"label\": \"No\",\n \"display_order\": 1\n }\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cloudtalk.io/v1/dialer/surveys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Post-call qualification\",\n \"questions\": [\n {\n \"label\": \"Was the customer interested?\",\n \"type\": \"radio\",\n \"is_required\": true,\n \"display_order\": 0,\n \"options\": [\n {\n \"label\": \"Yes\",\n \"display_order\": 0\n },\n {\n \"label\": \"No\",\n \"display_order\": 1\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "8",
"name": "Post-call qualification",
"is_archived": false,
"questions": [
{
"id": "310",
"label": "Was the customer interested?",
"type": "radio",
"is_required": true,
"display_order": 0,
"options": [
{
"id": "901",
"label": "Yes",
"display_order": 0
},
{
"id": "902",
"label": "No",
"display_order": 1
}
]
}
],
"created_at": "2026-07-01T09:00:00.000Z",
"updated_at": "2026-08-04T11:40:00.000Z"
}{
"statusCode": 400,
"message": "Validation error",
"error": "Bad Request",
"correlationId": "YevPQs",
"subErrors": [
"incorrect email"
]
}{
"code": "UNAUTHORIZED",
"message": "You are not authorized to access this resource."
}{
"statusCode": 429,
"message": "Too Many Requests",
"error": "Too Many Requests",
"correlationId": "YevPQs"
}{
"statusCode": 500,
"message": "Internal Server Error",
"error": "Internal Server Error",
"correlationId": "YevPQs"
}Create a survey
Creates a survey agents fill after a call. Omit questions to create an empty survey and add questions later with the replace-questions call. Question and option ids are server-generated — never send them. Attach the survey to a campaign via the campaign’s survey_id.
curl --request POST \
--url https://api.cloudtalk.io/v1/dialer/surveys \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Post-call qualification",
"questions": [
{
"label": "Was the customer interested?",
"type": "radio",
"is_required": true,
"display_order": 0,
"options": [
{
"label": "Yes",
"display_order": 0
},
{
"label": "No",
"display_order": 1
}
]
}
]
}
'import requests
url = "https://api.cloudtalk.io/v1/dialer/surveys"
payload = {
"name": "Post-call qualification",
"questions": [
{
"label": "Was the customer interested?",
"type": "radio",
"is_required": True,
"display_order": 0,
"options": [
{
"label": "Yes",
"display_order": 0
},
{
"label": "No",
"display_order": 1
}
]
}
]
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Post-call qualification',
questions: [
{
label: 'Was the customer interested?',
type: 'radio',
is_required: true,
display_order: 0,
options: [{label: 'Yes', display_order: 0}, {label: 'No', display_order: 1}]
}
]
})
};
fetch('https://api.cloudtalk.io/v1/dialer/surveys', 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.cloudtalk.io/v1/dialer/surveys",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Post-call qualification',
'questions' => [
[
'label' => 'Was the customer interested?',
'type' => 'radio',
'is_required' => true,
'display_order' => 0,
'options' => [
[
'label' => 'Yes',
'display_order' => 0
],
[
'label' => 'No',
'display_order' => 1
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cloudtalk.io/v1/dialer/surveys"
payload := strings.NewReader("{\n \"name\": \"Post-call qualification\",\n \"questions\": [\n {\n \"label\": \"Was the customer interested?\",\n \"type\": \"radio\",\n \"is_required\": true,\n \"display_order\": 0,\n \"options\": [\n {\n \"label\": \"Yes\",\n \"display_order\": 0\n },\n {\n \"label\": \"No\",\n \"display_order\": 1\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cloudtalk.io/v1/dialer/surveys")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Post-call qualification\",\n \"questions\": [\n {\n \"label\": \"Was the customer interested?\",\n \"type\": \"radio\",\n \"is_required\": true,\n \"display_order\": 0,\n \"options\": [\n {\n \"label\": \"Yes\",\n \"display_order\": 0\n },\n {\n \"label\": \"No\",\n \"display_order\": 1\n }\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cloudtalk.io/v1/dialer/surveys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Post-call qualification\",\n \"questions\": [\n {\n \"label\": \"Was the customer interested?\",\n \"type\": \"radio\",\n \"is_required\": true,\n \"display_order\": 0,\n \"options\": [\n {\n \"label\": \"Yes\",\n \"display_order\": 0\n },\n {\n \"label\": \"No\",\n \"display_order\": 1\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "8",
"name": "Post-call qualification",
"is_archived": false,
"questions": [
{
"id": "310",
"label": "Was the customer interested?",
"type": "radio",
"is_required": true,
"display_order": 0,
"options": [
{
"id": "901",
"label": "Yes",
"display_order": 0
},
{
"id": "902",
"label": "No",
"display_order": 1
}
]
}
],
"created_at": "2026-07-01T09:00:00.000Z",
"updated_at": "2026-08-04T11:40:00.000Z"
}{
"statusCode": 400,
"message": "Validation error",
"error": "Bad Request",
"correlationId": "YevPQs",
"subErrors": [
"incorrect email"
]
}{
"code": "UNAUTHORIZED",
"message": "You are not authorized to access this resource."
}{
"statusCode": 429,
"message": "Too Many Requests",
"error": "Too Many Requests",
"correlationId": "YevPQs"
}{
"statusCode": 500,
"message": "Internal Server Error",
"error": "Internal Server Error",
"correlationId": "YevPQs"
}Authorizations
HTTP Basic Authentication. Use your API Access Key ID as the username and your API Access Key Secret as the password. Generate keys in the CloudTalk Dashboard under Account -> Settings -> API Keys (https://dashboard.cloudtalk.io/menu/account/settings/API-keys).
Body
Response
The created survey with its full question set.
A survey with its full ordered question set. Returned by every single-survey call; the list serves summaries instead.
Survey ID.
"8"
Display name.
255"Post-call qualification"
Whether the survey is archived (soft-deleted). Archiving preserves collected answers.
false
The survey's questions, ordered by display_order.
Show child attributes
Show child attributes
When the survey was created (ISO 8601, UTC).
"2026-07-01T09:00:00.000Z"
When the survey last changed (ISO 8601, UTC).
"2026-08-04T11:40:00.000Z"