Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \ --url https://transaction-tax.api.in.commenda.io/api/v1/corporations/{corporation_id}/email-alias \ --header 'Authorization: Bearer <token>'
const response = await fetch('https://transaction-tax.api.in.commenda.io/api/v1/corporations/{corporation_id}/email-alias', { method: 'GET', headers: { 'Authorization': 'Bearer <token>' } }); const data = await response.json();
import requests response = requests.get( 'https://transaction-tax.api.in.commenda.io/api/v1/corporations/{corporation_id}/email-alias', headers={'Authorization': 'Bearer <token>'} ) data = response.json()
{ "message": "Successfully fetched emails for email alias.", "data": { "emails": [ "accounting@example.com", "tax@example.com" ] } }
{ "error": { "code": "CORPORATION_EMAIL_ALIAS_NOT_FOUND", "message": "Email alias not found for corporation" } }
{ "error": { "code": "CORPORATION_NOT_FOUND", "message": "Corporation not found" } }
Retrieve email addresses configured for a corporation’s email alias
Was this page helpful?