Skip to main content
Sets the email addresses that will receive emails sent to the corporation’s email alias. The email alias is used for filing-related communications.
corporation_id
string
required
The unique identifier of the corporation.
emails
array
required
Array of email addresses to receive forwarded emails. Each email must be a valid email format.
email_alias
string
required
The email alias that was configured for the corporation.
curl --request POST \
  --url https://transaction-tax.api.in.commenda.io/api/v1/corporations/{corporation_id}/email-alias \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "emails": [
      "accounting@example.com",
      "tax@example.com"
    ]
  }'
{
  "message": "Successfully updated email alias.",
  "data": {
    "email_alias": "acme@filings.commenda.io"
  }
}