Email Accounts

List Email Accounts

GET/v1/email-accounts
GET
/v1/email-accounts

List Connected Email Accounts

Retrieve all connected email accounts for the sub-account with their current status (active, warming, paused, error, auth-expired). Supports search, pagination, and sorting.

Authorization

X-Api-Key<token>

In: header

Query Parameters

searchstring

Search by email address or name

sortstring

Default: "createdAt"Value in: "createdAt" | "fromEmail" | "fromName"

sortBystring

Sort direction

Default: "DESC"Value in: "ASC" | "DESC"

statusstring

Filter by account status: active (connected, not warming), warming (warmup running), paused, error, auth-expired

Value in: "active" | "warming" | "paused" | "error" | "auth-expired"

Responses

200
200 response
{
  "items": [
    {
      "id": 0,
      "fromEmail": "string",
      "fromName": "string",
      "type": "gmail",
      "status": "active",
      "createdAt": "string"
    }
  ],
  "total": 0,
  "page": 0,
  "limit": 0,
  "totalPages": 0
}

Request

curl -X GET \
  "https://lupus-edge.trulyinbox.com/v1/email-accounts" \
  -H "X-Api-Key: YOUR_API_KEY"

Response

No response body