Skip to main content
POST
/
campaigns
/
{campaignId}
/
resume
Resume a campaign
curl --request POST \
  --url https://api.altahq.com/v1/campaigns/{campaignId}/resume \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resumeProspects": true
}
'
{
  "error": "Unauthorized",
  "message": "Invalid API token"
}
Resumes a paused campaign, restarting outreach to all prospects.

Authorizations

Authorization
string
header
required

API token authentication. Generate a token from the Alta dashboard and pass it as a Bearer token in the Authorization header.

Path Parameters

campaignId
string<uuid>
required

The UUID of the campaign to resume.

Body

application/json
resumeProspects
boolean

When true, also resumes all paused prospect workflows in the campaign.

Response

Campaign resumed successfully