Skip to main content
POST
/
automations
/
{id}
/
resume
curl --request POST \
  --url https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc/resume \
  --header 'Authorization: Bearer AS_your-project-api-key'
{
  "success": true,
  "data": {
    "id": "60d5ec49f1b2c72d9c8b9abc",
    "name": "Welcome Series",
    "status": "active",
    "activeAt": "2026-05-08T12:00:00.000Z",
    "updatedAt": "2026-05-08T12:00: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.

Resumes a paused workflow automation. New contacts can enter again, and in-flight contacts continue from their last completed step.
curl --request POST \
  --url https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc/resume \
  --header 'Authorization: Bearer AS_your-project-api-key'
{
  "success": true,
  "data": {
    "id": "60d5ec49f1b2c72d9c8b9abc",
    "name": "Welcome Series",
    "status": "active",
    "activeAt": "2026-05-08T12:00:00.000Z",
    "updatedAt": "2026-05-08T12:00: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 resumed successfully
success
boolean
Example: true
data
object
The workflow automation, with status set to active.

Error Responses

400 - Cannot activate
object
Returned when the workflow has missing required fields and cannot be activated.
{
  "success": false,
  "error": {
    "message": "Cannot activate workflow. Please check all required fields are filled",
    "code": "CANNOT_ACTIVATE_AUTOMATION"
  }
}
404 - Workflow not found
object
{
  "success": false,
  "error": {
    "message": "Workflow automation not found",
    "code": "WORKFLOW_NOT_FOUND"
  }
}