outbound.campaigns
Create Outbound Communication Campaign
post/api/v1/outbound/campaigns
Request body
Example request
{
"campaign_name": "Outbound Campaign 1",
"description": "This is a test campaign",
"mode": "voice",
"sms_session_ttl": 720,
"label": "test",
"labels": [
"test",
"demo"
],
"campaign_variables": {
"key": "value",
"key2": "value2"
},
"daily_start_time": "09:00:00",
"daily_end_time": "17:00:00",
"source": "+19032900844",
"hourly_rate": 25,
"max_daily_calls": 2500,
"retry_count": 1,
"retry_interval": "30m",
"voicemail_detection": {
"mode": "v1"
},
"allowed_line_types": [
"mobile",
"voip"
],
"include_unknown_line_types": true,
"target_filters": {
"match": "all",
"on_unknown": "include",
"rules": [
{
"field": "line_type",
"op": "in",
"values": [
"landline",
"fixedVoip",
"nonFixedVoip"
]
},
{
"field": "carrier_name",
"op": "in",
"values": [
"Onvoy, LLC - Sinch"
]
}
]
},
"webhooks": [
{
"url": "https://example.com/hooks/syllable",
"request_method": "POST",
"id": 1,
"auth_values": {
"hmac_secret": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
}
}
]
}Response
Successful Response
Example response
{
"campaign_name": "Outbound Campaign 1",
"description": "This is a test campaign",
"mode": "voice",
"sms_session_ttl": 720,
"label": "test",
"labels": [
"test",
"demo"
],
"campaign_variables": {
"key": "value",
"key2": "value2"
},
"daily_start_time": "09:00:00",
"daily_end_time": "17:00:00",
"source": "+19032900844",
"hourly_rate": 25,
"max_daily_calls": 2500,
"retry_count": 1,
"retry_interval": "30m",
"voicemail_detection": {
"mode": "v1"
},
"allowed_line_types": [
"mobile",
"voip"
],
"include_unknown_line_types": true,
"target_filters": {
"match": "all",
"on_unknown": "include",
"rules": [
{
"field": "line_type",
"op": "in",
"values": [
"landline",
"fixedVoip",
"nonFixedVoip"
]
},
{
"field": "carrier_name",
"op": "in",
"values": [
"Onvoy, LLC - Sinch"
]
}
]
},
"id": 1,
"created_at": "2026-08-01T00:00:00Z",
"updated_at": "2026-08-01T00:00:00Z",
"last_updated_by": "user@email.com",
"webhooks": [
{
"url": "https://example.com/hooks/syllable",
"request_method": "POST",
"id": 1,
"auth_value_keys": [
"hmac_secret"
]
}
]
}