List SMTP Accounts
List SMTP accounts for a domain.
List all SMTP accounts configured for a domain.
Scope: domains.smtp_accounts.read
Path Parameters
domain_idintegerrequiredThe ID of the domain.
Response
Returns an array of objects with the following fields:
idintegeroptionalSMTP account ID.
email_addressstringoptionalThe SMTP account email address.
passwordstringoptionalThe SMTP account password.
Sample Response
200 OK
{
"data": [
{
"id": 55,
"email_address": "[email protected]",
"password": "Xy9..."
}
]
}