Resume campaign
curl --request POST \
--url http://localhost:8787/api/v1/campaigns/{id}/resume \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/campaigns/{id}/resume"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/campaigns/{id}/resume', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Voice Campaigns
Resume campaign
Resume dialing for a paused campaign
POST
/
campaigns
/
{id}
/
resume
Resume campaign
curl --request POST \
--url http://localhost:8787/api/v1/campaigns/{id}/resume \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/campaigns/{id}/resume"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/campaigns/{id}/resume', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Resumes outbound calling for a campaign currently in
PAUSED status.
Path parameters
string
required
The unique UUID of the campaign to resume.
curl -X POST https://api.agentic-os.com/api/v1/campaigns/770e8400-e29b-41d4-a716-446655440000/resume \
-H "Authorization: Bearer $AGENTIC_OS_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'
import requests
response = requests.post(
"https://api.agentic-os.com/api/v1/campaigns/770e8400-e29b-41d4-a716-446655440000/resume",
headers={
"Authorization": f"Bearer {API_KEY}",
"Content-Type": "application/json",
},
json={},
)
print(response.status_code)
const response = await fetch(
"https://api.agentic-os.com/api/v1/campaigns/770e8400-e29b-41d4-a716-446655440000/resume",
{
method: "POST",
headers: {
Authorization: `Bearer ${API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({}),
},
);
console.log(response.status);
Response
202 Accepted indicating that the campaign has resumed outbound dialing.⌘I

