POST
/
campaigns
curl --request POST \
  --url https://my.cald.ai/client/api/v1/campaigns \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "listId": "<string>",
  "agentId": "<string>",
  "schedule": {
    "startHour": 9,
    "startMinute": 0,
    "endHour": 17,
    "endMinute": 0
  }
}'
{
  "status": "<string>",
  "campaignId": "<string>"
}
Campaigns are specifically designed to faciliate outbound marketing efforts. They take care of automatically following-up with prospects, and can be used to send emails, text messages, and voicemails. Campaigns also ensure prospects are dialed only during business hours, based on their phone number’s area code.

Authorizations

Authorization
string
header
required

Your API key, e.g. caldLiveDe39a3accb206dd615f30d118e519df0

Body

application/json

Response

200
application/json
Success response with campaign details

The response is of type object.