Skip to main content
GET
/
v3
/
sequences
/
{id}
/
email-accounts
List email accounts in sequence
curl --request GET \
  --url https://api.reply.io/v3/sequences/{id}/email-accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 12345,
    "ownerUserId": 42,
    "email": "sales@company.com",
    "senderName": "Sales Team",
    "emailAccountType": "gmail",
    "isDefault": false,
    "dailyLimit": 500,
    "connectionStatus": "connected"
  }
]

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

Response

List of email accounts linked to the sequence

id
integer<int64>

Email account ID

ownerUserId
integer

ID of the user who owns this email account

email
string<email>

The email address

senderName
string | null

The name displayed as sender in recipient inboxes

emailAccountType
enum<string>
read-only

Provider type of the email account. Values: custom, gmail, outlook, exchange, exchangeOnPremise

Available options:
custom,
gmail,
outlook,
exchange,
exchangeOnPremise
isDefault
boolean

Whether this is the user's default email account

dailyLimit
integer

Maximum number of emails that can be sent per day from this account

connectionStatus
enum<string>
read-only

Current connection status of the email account. Values: unknown, connected, disconnected

Available options:
unknown,
connected,
disconnected