Skip to main content
GET
/
v3
/
email-accounts
List email accounts
curl --request GET \
  --url https://api.reply.io/v3/email-accounts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 12345,
      "ownerUserId": 42,
      "email": "john.doe@company.com",
      "senderName": "John Doe",
      "emailAccountType": "gmail",
      "isDefault": true,
      "dailyLimit": 500,
      "connectionStatus": "connected",
      "tags": [
        "Marketing"
      ]
    }
  ],
  "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.

Query Parameters

top
integer

Maximum number of items to return (default 25, max 1000)

skip
integer

Number of items to skip

my
boolean
default:false

When false (default), returns all email accounts visible to the authenticated user:

  • In Public or Organization mode: all team members' accounts.
  • In Private mode: only the team owner sees all accounts; regular members see only their own. When true, returns only the authenticated user's own email accounts regardless of team mode.

Response

Paginated list of email accounts

items
EmailAccountListItem · object[]
hasMore
boolean

Whether more items are available beyond the current page