POST
/
api
/
agents
/
{agentId}
/
calls
/
campaign
curl --request POST \
  --url https://api.getstrada.com/api/agents/{agentId}/calls/campaign \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "campaignName": "<string>",
  "scheduleId": "<string>",
  "phoneNumber": "<string>",
  "phoneNumberId": "<string>",
  "variables": {}
}'
{
  "message": "Campaign call queued successfully"
}

Authorizations

Authorization
string
header
required

API Key authentication

Path Parameters

agentId
string
required

ID of the agent to use for the campaign

Body

application/json
campaignName
string
required

Name of the campaign

Maximum length: 40
scheduleId
string
required

ID of the schedule to use for the campaign

phoneNumber
string
required

Phone number in E.164 format (e.g. +19876543210)

phoneNumberId
string
required

ID of the phone number to use

variables
object
required

Key-value pairs of variables required by the agent

Response

201
application/json
Campaign call created successfully
message
string
Example:

"Campaign call queued successfully"