POST
/
campaigns
/
{id}
/
pause
curl --request POST \
  --url https://api.kakiyo.com/v1/campaigns/{id}/pause \
  --header 'Authorization: Bearer <token>'
{
  "id": "campaign_12345abcde",
  "message": "Campaign paused successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID of the campaign to pause

Response

200
application/json

Campaign paused successfully

The response is of type object.