The organization.created event payload looks like this:
{
"id": "event_123",
"createdAt": "2026-03-10T23:28:00.000Z",
"event": "organization.created",
"data": {
"object": "organization",
"id": "org_456",
"name": "my-org",
"domains": [],
"createdAt": "2026-03-10T23:27:59.955Z",
"updatedAt": "2026-03-10T23:27:59.955Z",
"externalId": "my-org",
"metadata": {
"createdBy": "user_789"
}
}
}
Is it possible to add the email of the createdBy user to metadata, e.g.:
{
"metadata": {
"createdBy": "user_789",
"createdByEmail": "me@company.com"
}
}
?
The
organization.createdevent payload looks like this:{ "id": "event_123", "createdAt": "2026-03-10T23:28:00.000Z", "event": "organization.created", "data": { "object": "organization", "id": "org_456", "name": "my-org", "domains": [], "createdAt": "2026-03-10T23:27:59.955Z", "updatedAt": "2026-03-10T23:27:59.955Z", "externalId": "my-org", "metadata": { "createdBy": "user_789" } } }Is it possible to add the email of the
createdByuser tometadata, e.g.:{ "metadata": { "createdBy": "user_789", "createdByEmail": "me@company.com" } }?