v1

latestOpenAPI 3.1.02026-07-26359254.7 MB
Sequence Email Accounts

List email accounts in sequence

<small>Requires the sequences:read scope (or a broader one that includes it).</small>

Returns the list of email accounts currently linked to the specified sequence.

get/v3/sequences/{id}/email-accounts

Path parameters

idinteger required

Sequence ID

Response

List of email accounts linked to the sequence

idinteger

Email account ID

ownerUserIdinteger

ID of the user who owns this email account

emailstring email

The email address

senderNamestring nullable

The name displayed as sender in recipient inboxes

emailAccountType'custom' | 'gmail' | 'outlook' | 'exchange' | 'exchangeOnPremise'

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

isDefaultboolean

Whether this is the user's default email account

dailyLimitinteger

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

connectionStatus'unknown' | 'connected' | 'disconnected'

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

Example response

[
  {
    "id": 12345,
    "ownerUserId": 42,
    "email": "sales@company.com",
    "senderName": "Sales Team",
    "emailAccountType": "gmail",
    "isDefault": false,
    "dailyLimit": 500,
    "connectionStatus": "connected"
  }
]