List Outbound
curl --request GET \
--url https://app.puffle.ai/api/campaigns \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.puffle.ai/api/campaigns"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.puffle.ai/api/campaigns', 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://app.puffle.ai/api/campaigns",
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://app.puffle.ai/api/campaigns"
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://app.puffle.ai/api/campaigns")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.puffle.ai/api/campaigns")
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{
"campaigns": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"daily_limit": 4503599627370495,
"stop_on_reply": true,
"open_tracking": true,
"signature": "<string>",
"skip_other_campaigns": true,
"operating_hours": {},
"stats": {
"total": 4503599627370495,
"sent": 4503599627370495,
"replied": 4503599627370495,
"bounced": 4503599627370495,
"completed": 4503599627370495,
"timed_out": 4503599627370495,
"connection_sent": 4503599627370495,
"connected": 4503599627370495,
"connections_accepted": 4503599627370495,
"message_sent": 4503599627370495,
"contacted": 4503599627370495
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"sender_accounts": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email_address": "<string>",
"provider_account_id": "<string>",
"display_name": "<string>",
"status": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"daily_limit": 4503599627370495,
"weekly_connection_limit": 4503599627370495,
"weekly_message_limit": 4503599627370495,
"is_premium": true
}
],
"node_count": 4503599627370495,
"campaignUrl": "<string>"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}Outbound
List Outbound
List campaign-backed Outbound executions
GET
/
api
/
campaigns
List Outbound
curl --request GET \
--url https://app.puffle.ai/api/campaigns \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.puffle.ai/api/campaigns"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.puffle.ai/api/campaigns', 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://app.puffle.ai/api/campaigns",
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://app.puffle.ai/api/campaigns"
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://app.puffle.ai/api/campaigns")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.puffle.ai/api/campaigns")
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{
"campaigns": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"daily_limit": 4503599627370495,
"stop_on_reply": true,
"open_tracking": true,
"signature": "<string>",
"skip_other_campaigns": true,
"operating_hours": {},
"stats": {
"total": 4503599627370495,
"sent": 4503599627370495,
"replied": 4503599627370495,
"bounced": 4503599627370495,
"completed": 4503599627370495,
"timed_out": 4503599627370495,
"connection_sent": 4503599627370495,
"connected": 4503599627370495,
"connections_accepted": 4503599627370495,
"message_sent": 4503599627370495,
"contacted": 4503599627370495
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"sender_accounts": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email_address": "<string>",
"provider_account_id": "<string>",
"display_name": "<string>",
"status": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"daily_limit": 4503599627370495,
"weekly_connection_limit": 4503599627370495,
"weekly_message_limit": 4503599627370495,
"is_premium": true
}
],
"node_count": 4503599627370495,
"campaignUrl": "<string>"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}CLI:
puffle campaign
Overview
Returns every campaign-backed Outbound execution owned by the caller in reverse chronological order, with the newest executions first regardless of status. Each item includes status, stats, flattened sender accounts, andnode_count.
Use this as the Outbound index for dashboards, agent boot checks, and Outbound selection flows.
AI agent notes
An emptycampaigns array is a valid state. To inspect sequence nodes, detailed settings, or contact-level progress, call Get Outbound or the relevant child endpoint for the selected row.
Do not infer sender readiness from this endpoint alone; use List Senders or Get Senders for Outbound when planning sends.Was this page helpful?
⌘I