Appearance
Run campaigns on a schedule.
POST
/backend/v1/campaign-schedules
Schedules a campaign run by its ID.
You can specify the interval time, start time, end time, frequency, number of occurrences, providers and name.
Authorizations
HTTPBearer
TypeHTTP (bearer)
Request Body
application/json
JSON
{
"campaignId": "string",
"count": 4,
"endAt": "string",
"frequency": "string",
"interval": "string",
"name": "string",
"providerIds": [
"string"
],
"startAt": "string"
}
Responses
Successful Response
application/json
JSON
{
"campaignRunId": "string",
"id": "string"
}