cURL
curl --request GET \
--url https://api.teamfollowup.ai/api/power-dialer/pipeline/steps \
--header 'Authorization: Bearer YOUR_API_KEY'import requests
url = "https://api.teamfollowup.ai/api/power-dialer/pipeline/steps"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.teamfollowup.ai/api/power-dialer/pipeline/steps', 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/pipeline/steps",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.teamfollowup.ai/api/power-dialer/pipeline/steps"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.teamfollowup.ai/api/power-dialer/pipeline/steps")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/power-dialer/pipeline/steps")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"stepCounts": [
{
"cadenceStep": 0,
"count": 4
}
],
"cadences": [
{
"_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:30:00.000Z",
"headers": [
{
"stepIndex": 0,
"label": "Day 1, 9:30 AM",
"day": 1,
"time": "9:30 AM"
}
]
}
],
"pdOverCount": 2,
"callbacksCount": 1
}
}{
"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": "TooManyRequests"
}{
"success": false,
"error": "Unexpected server error."
}Get pipeline steps
Load the visible cadence schedule, step counts, callback count, and parked-lead count for the Power Dialer workspace. Customer roles: agency_admin, project_user.
Required API key scope: power_dialer:read.
GET
/
api
/
power-dialer
/
pipeline
/
steps
cURL
curl --request GET \
--url https://api.teamfollowup.ai/api/power-dialer/pipeline/steps \
--header 'Authorization: Bearer YOUR_API_KEY'import requests
url = "https://api.teamfollowup.ai/api/power-dialer/pipeline/steps"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.teamfollowup.ai/api/power-dialer/pipeline/steps', 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/pipeline/steps",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.teamfollowup.ai/api/power-dialer/pipeline/steps"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.teamfollowup.ai/api/power-dialer/pipeline/steps")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/power-dialer/pipeline/steps")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"stepCounts": [
{
"cadenceStep": 0,
"count": 4
}
],
"cadences": [
{
"_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:30:00.000Z",
"headers": [
{
"stepIndex": 0,
"label": "Day 1, 9:30 AM",
"day": 1,
"time": "9:30 AM"
}
]
}
],
"pdOverCount": 2,
"callbacksCount": 1
}
}{
"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": "TooManyRequests"
}{
"success": false,
"error": "Unexpected server error."
}Authorizations
Send your API key as Authorization: Bearer YOUR_API_KEY.
Query Parameters
Project location id used to scope the cadence schedule.
Optional lead location override. Use __all__ to include every linked subaccount the caller can access.
Campaign id used to scope campaign-bound cadence editing.
Comma-separated campaign ids for combined campaign views.
⌘I
