Skip to main content
GET
/
email-accounts
/
disconnected
List disconnected email accounts
curl --request GET \
  --url https://api.reply.io/v3/email-accounts/disconnected \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": 123,
      "email": "<string>",
      "senderName": "<string>",
      "imapError": "<string>",
      "smtpError": "<string>",
      "emailAccountType": "<string>",
      "disconnectedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "hasMore": true
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Query Parameters

top
integer

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

skip
integer

Number of items to skip

Response

List of disconnected email accounts

items
object[]
hasMore
boolean