Skip to main content
POST
/
v3
/
sequences
/
{id}
/
email-account-links
Assign email account to sequence
curl --request POST \
  --url https://api.reply.io/v3/sequences/{id}/email-account-links \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "emailAccountId": 12345
}
'
{
  "title": "Invalid request parameter",
  "status": 400,
  "detail": "The 'id' parameter must be a positive."
}

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
integer
required

Sequence ID

Body

application/json
emailAccountId
integer<int64>
required

ID of the email account to link to the sequence

Required range: x >= 1

Response

Email account is already linked to the sequence (idempotent)