Skip to main content
POST
/
automations
/
{id}
/
pause
curl --request POST \
  --url https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc/pause \
  --header 'Authorization: Bearer AS_your-project-api-key'
{
  "success": true,
  "data": {
    "id": "60d5ec49f1b2c72d9c8b9abc",
    "name": "Welcome Series",
    "status": "paused",
    "updatedAt": "2026-05-08T11:30:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.autosend.com/llms.txt

Use this file to discover all available pages before exploring further.

Pauses an active workflow automation. New contacts stop entering the workflow; in-flight contacts remain in their current step until the workflow is resumed.
curl --request POST \
  --url https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc/pause \
  --header 'Authorization: Bearer AS_your-project-api-key'
{
  "success": true,
  "data": {
    "id": "60d5ec49f1b2c72d9c8b9abc",
    "name": "Welcome Series",
    "status": "paused",
    "updatedAt": "2026-05-08T11:30:00.000Z"
  }
}

Authorizations

Authorizations
string | header
required
Project API key header of the form Bearer AS_<key>.

Path Parameters

id
string
required
Workflow automation ID (MongoDB ObjectId).

Response

Workflow automation paused successfully
success
boolean
Example: true
data
object
The workflow automation, with status set to paused.

Error Responses

400 - Cannot pause inactive workflow
object
{
  "success": false,
  "error": {
    "message": "Cannot pause a workflow that is not active",
    "code": "CANNOT_PAUSE_INACTIVE_AUTOMATION"
  }
}
404 - Workflow not found
object
{
  "success": false,
  "error": {
    "message": "Workflow automation not found",
    "code": "WORKFLOW_NOT_FOUND"
  }
}