Get SMS campaign
curl --request GET \
--url http://localhost:8787/api/v1/sms-agent/campaigns/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/sms-agent/campaigns/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/sms-agent/campaigns/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));SMS Campaigns
Get SMS campaign
Retrieve details and message templates of an SMS campaign
GET
/
sms-agent
/
campaigns
/
{id}
Get SMS campaign
curl --request GET \
--url http://localhost:8787/api/v1/sms-agent/campaigns/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/sms-agent/campaigns/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/sms-agent/campaigns/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Retrieves configuration and template mappings of an SMS campaign by its unique UUID.
Path parameters
string
required
The unique UUID of the SMS campaign.
curl -X GET https://api.agentic-os.com/api/v1/sms-agent/campaigns/66666666-6666-6666-6666-666666666666 \
-H "Authorization: Bearer $AGENTIC_OS_API_KEY"
import requests
response = requests.get(
"https://api.agentic-os.com/api/v1/sms-agent/campaigns/66666666-6666-6666-6666-666666666666",
headers={"Authorization": f"Bearer {API_KEY}"},
)
print(response.json())
const response = await fetch(
"https://api.agentic-os.com/api/v1/sms-agent/campaigns/66666666-6666-6666-6666-666666666666",
{
method: "GET",
headers: { Authorization: `Bearer ${API_KEY}` },
},
);
const data = await response.json();
console.log(data);
Response
{
"id": "66666666-6666-6666-6666-666666666666",
"tenantId": "990e8400-e29b-41d4-a716-446655440000",
"agentId": "11111111-1111-1111-1111-111111111111",
"name": "Post-Call SMS Follow-up",
"senderNumber": "+15550199",
"senderProvider": "TWILIO",
"isActive": true,
"templates": [
{
"id": "sms_tpl_1",
"callStatus": "ANSWERED",
"messageBody": "Hi {{name}}, thanks for your time today! You can book your onboarding session here: https://agentic-os.com/onboarding",
"dltSenderId": null,
"dltTemplateId": null
},
{
"id": "sms_tpl_2",
"callStatus": "UNANSWERED",
"messageBody": "Hi {{name}}, we tried reaching you regarding your inquiry. Please call us back or reply to this message!",
"dltSenderId": null,
"dltTemplateId": null
}
],
"createdAt": "2026-06-01T12:00:00.000Z",
"updatedAt": "2026-06-01T12:00:00.000Z"
}
⌘I

