Campaigns
List campaigns
List the campaigns in your workspace, newest first, each with its live counters (`sent_count`, `delivered_count`, `read_count`, `failed_count`).
Offset-paginated via limit + skip. Requires campaigns:read.
Request
curl -X GET "https://api.blueticks.co/v1/campaigns"{
"success": true,
"data": [
{
"id": "string",
"name": "string",
"audience_id": "string",
"status": "pending",
"total_count": 0,
"sent_count": 0,
"delivered_count": 0,
"read_count": 0,
"failed_count": 0,
"from": "string",
"created_at": "2019-08-24T14:15:22Z",
"started_at": "2019-08-24T14:15:22Z",
"completed_at": "2019-08-24T14:15:22Z",
"aborted_at": "2019-08-24T14:15:22Z"
}
],
"limit": 0,
"skip": 0,
"total": 0
}{
"success": false,
"error": {
"code": "string",
"message": "string",
"request_id": "string",
"details": [
{
"path": "string",
"code": "string",
"message": "string"
}
]
}
}Query Parameters
skip?integer
Number of items to skip before the page (default 0).
Default
0Range
0 <= valuelimit?integer
Page size (default 50, max 200).
Default
50Range
1 <= value <= 200Response
Response Body
application/json
application/json