Skip to main content
PATCH
/
v1
/
sequences
/
{sequence_id}
Update a Sequence
curl --request PATCH \
  --url https://api.monaco.com/v1/sequences/{sequence_id} \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "data": {
    "id": "seq_abc123",
    "contact_id": "con_def456",
    "name": "Enterprise Onboarding",
    "description": "Multi-touch onboarding sequence for enterprise accounts",
    "status": "started",
    "template_id": "seqt_789ghi",
    "created_at": "2026-05-18T10:30:00Z",
    "updated_at": "2026-05-18T10:35:00Z",
    "tasks": []
  },
  "meta": {
    "timestamp": "2026-05-18T10:35:00Z"
  }
}

Documentation Index

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

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

Path Parameters

sequence_id
string<uuid>
required

Body

application/json
action
enum<string>
required

State transition to apply:

  • enqueue — move a suggested sequence into the queue
  • pause — temporarily halt execution
  • resume — resume a paused sequence
  • stop — end the sequence as failed
Available options:
pause,
resume,
stop,
enqueue
Example:

"enqueue"

Response

Successful Response

data
SequenceDetailResponse · object
required

Sequence resource with its ordered list of tasks.

meta
ResponseMeta · object