Skip to main content
Retrieves the list of email addresses that receive emails sent to the corporation’s email alias.
corporation_id
string
required
The unique identifier of the corporation.
emails
array
required
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"
    ]
  }
}