`GET /api/workflow_triggers/{tid}/email_alias` -- single alias row keyed by trigger. 404 when the trigger does not exist, is not owned by this workspace, or is not an `email_plus_address` trigger (no alias row).
GET
/api/workflow_triggers/{tid}/email_alias
const url = 'https://example.com/api/workflow_triggers/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/email_alias';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/workflow_triggers/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/email_aliasParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”tid
required
string format: uuid
Responses
Section titled “Responses”Media typeapplication/json
JSON shape of an alias row. Flat – the localpart is a derived view of
address but exposed explicitly so the UI does not duplicate the parser.
object
address
required
string
address_localpart
required
string
created_at
required
string format: date-time
id
required
string format: uuid
trigger_id
required
string format: uuid
user_slug
string | null
workflow_id
required
string format: uuid
workspace_id
required
string format: uuid
Examplegenerated
{ "address": "example", "address_localpart": "example", "created_at": "2026-04-15T12:00:00Z", "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "trigger_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "user_slug": "example", "workflow_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "workspace_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}