cURL
curl --request PUT \
--url https://api.teamfollowup.ai/api/power-dialer/cadences/{id} \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"cadenceName": "Three-touch follow-up",
"schedule": [
{
"day": 1,
"hour": 9,
"minute": 30,
"period": "AM",
"doubleDial": true,
"call": {
"enabled": true
},
"additionalActions": [
{
"type": "sms",
"body": "Hi Alex, are you still interested in booking a consultation?",
"delaySeconds": 0,
"jitterSeconds": 60
}
]
},
{
"day": 3,
"hour": 10,
"minute": 0,
"period": "AM",
"call": {
"enabled": false
},
"additionalActions": [
{
"type": "sms",
"body": "Following up again about your consultation."
}
]
}
],
"activeDays": [
1,
2,
3,
4,
5
],
"campaignId": "campaign_speed_to_lead_123",
"locationId": "loc_9f7a123"
}'import requests
url = "https://api.teamfollowup.ai/api/power-dialer/cadences/{id}"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.teamfollowup.ai/api/power-dialer/cadences/{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.teamfollowup.ai/api/power-dialer/cadences/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.teamfollowup.ai/api/power-dialer/cadences/{id}"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.put("https://api.teamfollowup.ai/api/power-dialer/cadences/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/power-dialer/cadences/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"_id": "cadence_123",
"cadenceName": "Three-touch follow-up",
"isDefault": false,
"locationIds": [
"loc_9f7a123"
],
"campaignIds": [
"campaign_speed_to_lead_123"
],
"activeDays": [
1,
2,
3,
4,
5
],
"active": true,
"schedule": [
{
"day": 1,
"hour": 9,
"minute": 30,
"period": "AM",
"doubleDial": true,
"call": {
"enabled": true
},
"additionalActions": [
{
"type": "sms",
"body": "Hi Alex, are you still interested in booking a consultation?",
"delaySeconds": 0,
"jitterSeconds": 60
}
]
}
],
"createdAt": "2026-07-08T16:10:00.000Z",
"updatedAt": "2026-07-08T16:45:00.000Z"
},
"reorder": {
"remapped": 0,
"movedSteps": 0,
"removed": 0,
"deletedSteps": 0
}
}{
"success": false,
"error": "cadenceStep query parameter is required"
}{
"success": false,
"error": "Unauthorized"
}{
"success": false,
"error": "You do not have access to this project"
}{
"success": false,
"error": "Schedule not found."
}{
"success": false,
"error": "This schedule is shared by more than one campaign or project. Clone it and edit your copy."
}{
"success": false,
"error": "This change re-sequences touchpoints and remaps in-flight leads. Re-send with confirmReorder:true."
}{
"success": false,
"error": "TooManyRequests"
}{
"success": false,
"error": "Unexpected server error."
}Update campaign schedule
Update a campaign Power Dialer schedule. Include campaignId and locationId when saving from a campaign-bound workspace. Customer role: agency_admin.
Required API key scope: power_dialer:write.
PUT
/
api
/
power-dialer
/
cadences
/
{id}
cURL
curl --request PUT \
--url https://api.teamfollowup.ai/api/power-dialer/cadences/{id} \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"cadenceName": "Three-touch follow-up",
"schedule": [
{
"day": 1,
"hour": 9,
"minute": 30,
"period": "AM",
"doubleDial": true,
"call": {
"enabled": true
},
"additionalActions": [
{
"type": "sms",
"body": "Hi Alex, are you still interested in booking a consultation?",
"delaySeconds": 0,
"jitterSeconds": 60
}
]
},
{
"day": 3,
"hour": 10,
"minute": 0,
"period": "AM",
"call": {
"enabled": false
},
"additionalActions": [
{
"type": "sms",
"body": "Following up again about your consultation."
}
]
}
],
"activeDays": [
1,
2,
3,
4,
5
],
"campaignId": "campaign_speed_to_lead_123",
"locationId": "loc_9f7a123"
}'import requests
url = "https://api.teamfollowup.ai/api/power-dialer/cadences/{id}"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.teamfollowup.ai/api/power-dialer/cadences/{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.teamfollowup.ai/api/power-dialer/cadences/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.teamfollowup.ai/api/power-dialer/cadences/{id}"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.put("https://api.teamfollowup.ai/api/power-dialer/cadences/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/power-dialer/cadences/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"_id": "cadence_123",
"cadenceName": "Three-touch follow-up",
"isDefault": false,
"locationIds": [
"loc_9f7a123"
],
"campaignIds": [
"campaign_speed_to_lead_123"
],
"activeDays": [
1,
2,
3,
4,
5
],
"active": true,
"schedule": [
{
"day": 1,
"hour": 9,
"minute": 30,
"period": "AM",
"doubleDial": true,
"call": {
"enabled": true
},
"additionalActions": [
{
"type": "sms",
"body": "Hi Alex, are you still interested in booking a consultation?",
"delaySeconds": 0,
"jitterSeconds": 60
}
]
}
],
"createdAt": "2026-07-08T16:10:00.000Z",
"updatedAt": "2026-07-08T16:45:00.000Z"
},
"reorder": {
"remapped": 0,
"movedSteps": 0,
"removed": 0,
"deletedSteps": 0
}
}{
"success": false,
"error": "cadenceStep query parameter is required"
}{
"success": false,
"error": "Unauthorized"
}{
"success": false,
"error": "You do not have access to this project"
}{
"success": false,
"error": "Schedule not found."
}{
"success": false,
"error": "This schedule is shared by more than one campaign or project. Clone it and edit your copy."
}{
"success": false,
"error": "This change re-sequences touchpoints and remaps in-flight leads. Re-send with confirmReorder:true."
}{
"success": false,
"error": "TooManyRequests"
}{
"success": false,
"error": "Unexpected server error."
}Authorizations
Send your API key as Authorization: Bearer YOUR_API_KEY.
Path Parameters
Schedule id.
Minimum string length:
1Body
application/json
Schedule update payload.
Example:
"Three-touch follow-up"
A single touchpoint in a cadence. Forward cadences use clock-time entries (PowerDialerScheduleForwardEntry); appointment_reminder cadences use appointment-anchored entries (PowerDialerScheduleReminderEntry).
- Option 1
- Option 2
Show child attributes
Show child attributes
Required range:
0 <= x <= 6Example:
[1, 2, 3, 4, 5]
Available options:
appointment_reminder Example:
"appointment_reminder"
Example:
[0, null]
Show child attributes
Show child attributes
Example:
true
Example:
false
Example:
"campaign_speed_to_lead_123"
Example:
"loc_9f7a123"
⌘I
