POST
/
user
/
campaigns
/
update-status
Update campaign status
curl --request POST \
  --url https://app.robocallz.ai/user/campaigns/update-status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "campaign_id": 123,
  "action": "start"
}'
{
  "message": "Campaign started successfully",
  "success": true,
  "data": {
    "campaign_id": 123,
    "status": "in-progress"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200 - application/json

Campaign status updated successfully

The response is of type object.