Skip to main content
GET
/
v3
/
sequences
/
ai-sdr
/
{sequence_id}
/
playbook
Get the sequence's playbook
curl --request GET \
  --url https://api.reply.io/v3/sequences/ai-sdr/{sequence_id}/playbook \
  --header 'Authorization: Bearer <token>'
{
  "id": "t-7",
  "name": "Outbound playbook v2",
  "type": "team"
}

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

sequence_id
integer
required

Sequence id

Required range: x >= 1

Response

Playbook attached to the sequence

Compact representation of the playbook attached to a sequence.

id
string
read-only

Composite playbook id ({prefix}-{numericId}) where the prefix encodes the playbook scope: g for global, o for organization, t for team.

name
string
read-only

Display name of the playbook

type
enum<string>

Visibility scope of the playbook

Available options:
global,
organization,
team