Pauses an active workflow automation. New contacts will not enter the workflow while paused.
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.
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"
}
}
AS_<key>.truestatus set to paused.{
"success": false,
"error": {
"message": "Cannot pause a workflow that is not active",
"code": "CANNOT_PAUSE_INACTIVE_AUTOMATION"
}
}
{
"success": false,
"error": {
"message": "Workflow automation not found",
"code": "WORKFLOW_NOT_FOUND"
}
}
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"
}
}