/api/campaignsList campaigns
Returns paginated campaigns for your tenant.
URL: https://api.actiwapi.com/api/campaigns
Auth: JWT Bearer
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {accessToken} | Yes |
| Content-Type | application/json | Yes* |
Query parameters
page— Page numberstatus— Filter by status: draft, running, paused, completed
Code examples
curl -X GET "https://api.actiwapi.com/api/campaigns" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {accessToken}"Response example200
{
"success": true,
"data": [{ "id": "uuid", "name": "March Promo", "status": "running", "sentCount": 120 }],
"pagination": { "page": 1, "total": 5 }
}