Skip to main content
GET
/
v3
/
sequence-folders
/
{id}
/
sequences
List sequences in a folder
curl --request GET \
  --url https://api.reply.io/v3/sequence-folders/{id}/sequences \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 12345,
      "ownerUserId": 42,
      "name": "Sales Outreach",
      "status": "active",
      "created": "2024-03-08T10:00:00+00:00",
      "isArchived": false,
      "health": "healthy"
    },
    {
      "id": 12346,
      "ownerUserId": 42,
      "name": "Follow-up Campaign",
      "status": "paused",
      "created": "2024-03-07T14:30:00+00:00",
      "isArchived": false,
      "health": "degraded"
    }
  ],
  "hasMore": true
}

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

Query Parameters

top
integer

Maximum number of items to return

skip
integer

Number of items to skip

sort_by
string

Field to sort by

sort_direction
enum<string>

Sort direction (asc or desc)

Available options:
asc,
desc

Response

List of sequences in folder retrieved successfully

Response model for listing sequences with pagination

items
object[]

Array of sequence items

hasMore
boolean

Indicates if there are more items to fetch