Webhook Events

get

Get a webhook event

Retrieves a specific webhook event by ID, including its payload.

idstring

required

The webhook event ID

Responses

Response examples

Success

{
  "data": {
    "id": "evt_abc123",
    "networkId": "n_abc123",
    "eventType": "ocpp.message",
    "createdAt": "2023-06-07T17:32:28Z",
    "payload": {}
  }
}
get

List webhook events

Returns a paginated list of webhook events for the authenticated network. Events are retained for 7 days.

limitint

Maximum number of items to return

Default
20
Min
1
Max
100
startingAfterstring

Cursor for pagination. Pass the ID of the last item from the previous page.

Responses

Response examples

Success

{
  "data": {
    "items": [
      {
        "id": "evt_abc123",
        "networkId": "n_abc123",
        "eventType": "ocpp.message",
        "createdAt": "2023-06-07T17:32:28Z",
        "payload": {}
      }
    ],
    "hasMore": true
  }
}

Was this page helpful?