v45

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-0114775543.6 KB
Campaigns

Start or resume a campaign

Queues the campaign for processing and returns immediately — the campaign is not yet running when the 202 is returned. Poll GET /campaign/{id} and watch for status: "running".

This endpoint also acts as a resume endpoint: if the campaign is currently paused, calling this endpoint resumes it (status transitions from pausedrunning).

post/campaign/{id}/start

Path parameters

idstring required

The ID of the campaign

Response

Campaign queued for processing

statusboolean

Example response

{
  "status": true,
  "data": {
    "message": "Campaign is being processed"
  }
}