Retrieves the list of email addresses that receive emails sent to the corporation’s email alias.
The unique identifier of the corporation.
Array of email addresses that receive forwarded emails.
curl --request GET \
--url https://transaction-tax.api.in.commenda.io/api/v1/corporations/{corporation_id}/email-alias \
--header 'Authorization: Bearer <token>'
{
"message": "Successfully fetched emails for email alias.",
"data": {
"emails": [
"accounting@example.com",
"tax@example.com"
]
}
}