GET
List Campaigns
Fetch broadcast campaigns, their delivery progress, and schedule states.
HTTP Endpoint
GEThttps://api-wa.hidessh.com/api/v1/campaigns
Authentication
This endpoint requires Bearer authentication via your secret API Key.
| Header Key | Value | Required |
|---|---|---|
| Authorization | Bearer <your_api_key> | Required |
| Content-Type | application/json | Required |
Request Parameters
The request body must be formatted as JSON with the following parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | Optional | Filter by status: 'DRAFT', 'RUNNING', 'PAUSED', 'COMPLETED'. example: RUNNING |
page | integer | Optional | Page number. default: 1 |
size | integer | Optional | Page size. default: 10 |
Code Examples
request.sh
curl -X GET "https://api-wa.hidessh.com/api/v1/campaigns?status=RUNNING" \
-H "Authorization: Bearer YOUR_API_KEY"Response Formats
Campaigns array.
application/json • 200 OK
On this page