GET
https://stoplight.io/mocks/replyteam/reply/765516802
/
email-accounts
curl --request GET \
  --url https://stoplight.io/mocks/replyteam/reply/765516802/email-accounts
[
  {
    "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

Response

200 - application/json

Email accounts retrieved successfully

The response is of type object[].