MailMoo
EndpointsCampaigns

Start or pause a campaign

Starts the campaign's sequence, or pauses it. Starting one begins messaging real people, and requires an active subscription and a sequence that passes its readiness checks. Pausing is always allowed.

POST/campaigns.setSequenceActive

Authorization

bearerAuth
AuthorizationBearer <token>

Enter your MailMoo API key (format: sk_live_...)

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/campaigns.setSequenceActive" \  -H "Content-Type: application/json" \  -d '{    "campaignId": "13f8bf6d-dc27-4a04-bffe-6e5b13c19ddf",    "active": true  }'
{  "sequenceId": "string",  "campaignId": "string",  "active": true,  "changed": true}