GET
/
email-accounts
List all email accounts
curl --request GET \
  --url https://api.reply.io/v3/email-accounts \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": 123,
    "senderName": "<string>",
    "emailAddress": "jsmith@example.com",
    "signature": "<string>"
  }
]

Get Email Accounts

Retrieve a list of email accounts associated with your account.

API Endpoint

GET /email-accounts

Parameters

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number for pagination (default: 1)
limitintegerNoNumber of items per page (default: 10)
statusstringNoFilter by account status (active/inactive)

Response

200: OK

{
  "data": [
    {
      "id": "string",
      "email": "string",
      "status": "string",
      "created_at": "string",
      "updated_at": "string"
    }
  ],
  "meta": {
    "current_page": 1,
    "total_pages": 1,
    "total_count": 1
  }
}

Error Responses

Status CodeDescription
401Unauthorized
403Forbidden
500Internal Server Error

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Response

200 - application/json

Email accounts retrieved successfully

id
integer
required

Unique identifier for the email account

senderName
string
required

Name of the sender

emailAddress
string<email>
required

Email address

signature
string
required

Email signature