v1

latestOpenAPI 3.1.02026-07-26359254.7 MB
Email Accounts

Filter email account stats

<Warning> **Coming soon.** This endpoint will be available by late July 2026. </Warning>

<small>Requires the channels:read scope (or a broader one that includes it).</small>

Returns a paginated list of email account sending statistics matching the provided filter criteria.

post/v3/email-accounts/stats

Query parameters

topinteger

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

skipinteger

Number of items to skip

Request body

status'connected' | 'disconnected' | 'unknown' nullable

Filter by connection status (case-insensitive, exact match). Allowed values: connected, disconnected, unknown

emailAccountTypestring nullable

Filter by email account provider type (case-insensitive, exact match). Allowed values: Custom, Gmail, Outlook, Exchange, ExchangeOnPremise

emailstring nullable

Filter by email address (exact match, case-insensitive)

domainsstring[] nullable

Filter by email domains (suffix match on the email address). Multiple domains are combined with OR logic — matches any of the provided domains.

ownerUserIdsinteger[] nullable

Filter by owner user IDs (matches any of the provided IDs)

tagsstring[] nullable

Filter by tag names (case-insensitive, matches any of the provided tags)

Example request

{
  "status": "connected",
  "emailAccountType": "Gmail",
  "domains": [
    "company.com"
  ],
  "tags": [
    "Marketing"
  ]
}

Response

Paginated list of email account stats

hasMoreboolean

Whether more items are available beyond the current page

Example response

{
  "items": [
    {
      "id": 12345,
      "emailsSentToday": 42,
      "totalEmailsSent": 1580,
      "dailySendingLimit": 500
    }
  ]
}