Sets the email addresses that will receive emails sent to the corporation’s email alias. The email alias is used for filing-related communications.
The unique identifier of the corporation.
Array of email addresses to receive forwarded emails. Each email must be a valid email format.
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"
}
}