Skip to main content
POST
/
v3
/
sequences
/
archive
Bulk archive sequences
curl --request POST \
  --url https://api.reply.io/v3/sequences/archive \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    123
  ]
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

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

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Body

application/json
ids
integer[]
required

List of sequence IDs to archive

Response

Dictionary of failed items keyed by sequence ID. Empty object {} means all succeeded.

Per-item error codes in notProcessed:

errorMeaning
1NotFound — sequence does not exist
2Forbidden — caller lacks permission for this sequence
3Archived — sequence is already archived
8SalesAgentNotAllowed — operation not permitted on a sales-agent sequence
{key}
NotProcessedItemResult · object

Per-item error for non-atomic bulk operations. Only failed items are returned in the response dictionary. Items not present in the dictionary succeeded.