Get WhatsApp campaign
curl --request GET \
--url http://localhost:8787/api/v1/whatsapp/campaigns/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/whatsapp/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/whatsapp/campaigns/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));WhatsApp Campaigns
Get WhatsApp campaign
Retrieve details and template mappings of a WhatsApp campaign
GET
/
whatsapp
/
campaigns
/
{id}
Get WhatsApp campaign
curl --request GET \
--url http://localhost:8787/api/v1/whatsapp/campaigns/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/whatsapp/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/whatsapp/campaigns/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Retrieves the configuration and template mappings of a WhatsApp campaign by its unique UUID.
Path parameters
string
required
The unique UUID of the WhatsApp campaign.
curl -X GET https://api.agentic-os.com/api/v1/whatsapp/campaigns/55555555-5555-5555-5555-555555555555 \
-H "Authorization: Bearer $AGENTIC_OS_API_KEY"
import requests
response = requests.get(
"https://api.agentic-os.com/api/v1/whatsapp/campaigns/55555555-5555-5555-5555-555555555555",
headers={"Authorization": f"Bearer {API_KEY}"},
)
print(response.json())
const response = await fetch(
"https://api.agentic-os.com/api/v1/whatsapp/campaigns/55555555-5555-5555-5555-555555555555",
{
method: "GET",
headers: { Authorization: `Bearer ${API_KEY}` },
},
);
const data = await response.json();
console.log(data);
Response
{
"id": "55555555-5555-5555-5555-555555555555",
"tenantId": "990e8400-e29b-41d4-a716-446655440000",
"agentId": "11111111-1111-1111-1111-111111111111",
"name": "Post-Call Customer Follow-up",
"phoneNumberId": "105938472910293",
"isActive": true,
"templates": [
{
"id": "template_1",
"templateName": "call_summary_feedback",
"languageCode": "en_US",
"process": "OUTGOING",
"callStatus": "ANSWERED"
}
],
"createdAt": "2026-06-01T11:00:00.000Z",
"updatedAt": "2026-06-01T11:00:00.000Z"
}
⌘I

