v1
latestOpenAPI 3.1.02026-07-26359254.7 MBEmail Accounts
Filter email accounts
<small>Requires the channels:read scope (or a broader one that includes it).</small>
Returns a paginated list of email accounts matching the provided filter criteria. In Public or Organization mode, results include all team members' accounts. Use ownerUserIds filter to restrict by specific users. When no accounts match the filter, the response contains an empty items array with hasMore: false — this is normal behavior, not an error.
post/v3/email-accounts/filter
Query parameters
topinteger
Maximum number of items to return (default 25, max 1000)
skipinteger
Number of items to skip
Request body
Example request
{
"status": "connected",
"emailAccountType": "Gmail",
"domains": [
"company.com"
],
"tags": [
"Marketing"
]
}Response
Paginated list of matching email accounts
Example response
{
"items": [
{
"id": 12345,
"ownerUserId": 42,
"email": "john.doe@company.com",
"senderName": "John Doe",
"emailAccountType": "gmail",
"isDefault": true,
"dailyLimit": 500,
"connectionStatus": "connected",
"tags": [
"Marketing",
"Outbound"
]
}
]
}