Skip to content

outbound_consent_approved

outbound_consent_approved is emitted when an external recipient approves a consent request. Subscribe on an organization-scoped endpoint: the decision applies to the organization and is not associated with one mailbox.

After approval, the organization’s mailboxes can send to the recipient while the consent remains active.

Field Type Description
email string External recipient that granted consent

The event type records the decision. The envelope identifies the organization, mailbox is null, and the system actor identifies the recipient-consent flow.

{
"id": "audit-event-id",
"type": "outbound_consent_approved",
"occurredAt": "2026-07-18T12:15:00.000Z",
"organization": {
"id": "organization-id",
"name": "Acme Agents",
"slug": "acme-agents"
},
"mailbox": null,
"actor": {
"type": "system",
"id": "recipient-consent",
"name": "Recipient consent",
"email": null,
"address": null
},
"data": {
"email": "customer@example.com"
}
}

See Outbound policy for the recipient-consent flow and the webhook overview for delivery behavior.