Skip to main content
GET
/
events
/
{eventId}
/
detail
Gets event details by ID.
curl --request GET \
  --url https://api.leadping.ai/events/{eventId}/detail \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "modifiedAt": "2023-11-07T05:31:56Z",
  "eventType": "<string>",
  "secondaryEventType": "<string>",
  "description": "<string>",
  "user": {
    "id": "<string>",
    "name": "<string>"
  },
  "leadId": "<string>",
  "fullPayload": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. (i.e. "Bearer 1234abcdef")

Path Parameters

eventId
string
required

The ID of the event.

Response

Event details were successfully retrieved.

id
string | null
createdAt
string<date-time>
modifiedAt
string<date-time> | null
eventType
string | null
secondaryEventType
string | null
description
string | null
user
object
leadId
string | null
fullPayload
string | null

The full event payload as JSON string for generic display

I