v1
latestOpenAPI 3.1.02026-07-26359254.7 MBEmail Accounts
Get an email account
<small>Requires the channels:read scope (or a broader one that includes it).</small>
Returns the full details of a single email account including all configuration sections.
get/v3/email-accounts/{id}
Path parameters
idinteger required
Email Account ID
Response
Email account details
Example response
{
"id": 12345,
"ownerUserId": 42,
"emailAccountType": "custom",
"isDefault": false,
"isInUse": true,
"connectionStatus": "connected",
"sendingConnectivityError": null,
"receivingConnectivityError": null,
"sendingLockedByProvider": false,
"updatedAt": "2026-03-15T10:30:00Z",
"connection": {
"email": "john.doe@company.com",
"senderName": "John Doe",
"smtpHost": "smtp.company.com",
"smtpPort": 465,
"smtpSsl": true,
"imapHost": "imap.company.com",
"imapPort": 993,
"imapSsl": true
},
"safety": {
"dailyLimit": 500,
"isEmailsThrottlingEnabled": true,
"emailsPerInterval": 5,
"emailsThrottlingSecondsInterval": 60,
"isSendingDelayEnabled": true,
"maxSendingDelaySeconds": 120,
"minSendingDelaySeconds": 30
},
"signature": {
"signature": "Best regards,\nJohn Doe"
},
"optOut": {
"message": "Unsubscribe",
"emailFooter": "",
"isOptOutLinkEnabled": true,
"optOutTextBlock": "Click here to unsubscribe"
},
"rampUp": {
"enabled": false,
"startValue": 10,
"incrementValue": 5
},
"tags": [
"Marketing"
]
}