/webhooks/v1/webhook-events/{id}Retrieves a specific webhook event by ID, including its payload.
idstringrequired
The webhook event ID
Success
{
"data": {
"id": "evt_abc123",
"networkId": "n_abc123",
"eventType": "ocpp.message",
"createdAt": "2023-06-07T17:32:28Z",
"payload": {}
}
}/webhooks/v1/webhook-eventsReturns a paginated list of webhook events for the authenticated network. Events are retained for 7 days.
limitintMaximum number of items to return
startingAfterstringCursor for pagination. Pass the ID of the last item from the previous page.
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?