Skip to main content
POST
/
v3
/
sequence-folders
/
{id}
/
sequence-links
/
bulk
Bulk assign sequences to a folder
curl --request POST \
  --url https://api.reply.io/v3/sequence-folders/{id}/sequence-links/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sequenceIds": [
    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.

Path Parameters

id
string<uuid>
required

Sequence folder Id

Body

application/json
sequenceIds
integer[]
required

List of sequence IDs to assign to the folder

Response

Bulk assign result — only failed items are returned, keyed by sequence ID.

Per-item error codes:

errorMeaning
1NotFound — sequence does not exist
{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.