Appearance
Get campaign schedules.
GET
/backend/v1/campaign-schedules
Retrieves a list of campaign schedules that match the given criteria,
with the option to adjust the limit for more results.
Authorizations
HTTPBearer
TypeHTTP (bearer)
Parameters
Query Parameters
limit
Limits the amount of returned objects. Max 100, min 1
Typeinteger
default
10
cursor
Selects page for paginated results. Pass in the next or prev attribute in the response
campaignId
If specified, will only return schedules that run the specified campaign
Responses
Successful Response
application/json
JSON
{
"next": "string",
"prev": "string",
"schedules": [
{
"campaignId": "string",
"count": "string",
"createdAt": "string",
"endAt": "string",
"frequency": "string",
"id": "string",
"interval": "string",
"name": "string",
"providerIds": [
"string"
],
"startAt": "string"
}
]
}