Get a single event log by ID
Event Logs
Get a single event log by ID
Fetch a single EventLog by _id. Used by the audit drawer to render the full payload of a row clicked from the list view. Cross-org access is denied for non-SUPERADMIN callers.
GET
Get a single event log by ID
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Event log returned
Response from GET /api/event-logs/{id}.
Available options:
true A persisted EventLog record. Most fields come straight from the EventLog model; contactFirstName/contactLastName are joined in by the controller for the list view.
Example:
{
"_id": "65e0a0b0c0d0e0f0a0b0c0d0",
"organizationId": "65a0e0e0e0e0e0e0e0e0e0e0",
"userId": "65b1f0a2c3d4e5f6a7b8c9d0",
"contactId": "65c2d0e0f0a0b0c0d0e0f0a0",
"conversationId": "65d3e0f0a0b0c0d0e0f0a0b0",
"direction": "inbound",
"automationTriggered": true,
"eventType": "message.received",
"payload": {
"channelType": "sms",
"body": "Yes please!"
},
"contactFirstName": "Jane",
"contactLastName": "Doe",
"createdAt": "2026-05-18T14:30:00.000Z",
"updatedAt": "2026-05-18T14:30:00.000Z"
}