---
title: "Retrieve a single webhook entry by id"
method: GET
path: "/api/v1/webhooks/entries/{entryId}"
tags: ["Webhooks"]
---

# Retrieve a single webhook entry by id

`GET /api/v1/webhooks/entries/{entryId}`

This endpoint returns a single entry by id.
*Note that we only persist entries for past 24 hours.*
Required scope: `webhooks:read`

## Path parameters

- `entryId` integer, required

## Response `200`

Webhook entry with given id

- WebhookEntry
  - `id` integer — Id of the entry
  - `consumerId` integer — Id of the consumer this entry belongs to
  - `operatorId` integer — Id of the operator this entry belongs to
  - `eventType` 'charges' | 'charge-points' | 'sites' | 'users' | 'team-members' | 'teams' | 'installer-jobs' | 'wallet-transactions' | 'price-groups' | 'subscriptions' | 'plans' | 'charge-auth-tokens' | 'reports' | 'ocpp-messages' | 'charge-points-protocol-updates', required
  - `payload` WebhookEntryPayload, required
    - `entityType` 'charge' | 'charge-point' | 'site' | 'user' | 'team' | 'team-member' | 'installer-job' | 'wallet-transaction' | 'price-group' | 'subscription' | 'plan' | 'charge-auth-token' | 'report' | 'ocpp-messages', required
    - `entityId` string, nullable — Id of the entity, if applicable
    - `eventType` 'created' | 'updated' | 'deleted' | 'scanned' | 'monta:ocpp:OcppRequestResponse' | 'monta:ocpp:ChargePointConnected' | 'monta:ocpp:ChargePointDisconnected' | 'monta:ocpp:OcppProtocolError' | 'monta:ocpp:OcppRequestTimeout', required
    - `eventTime` string, date-time, nullable — The timestamp indicating when the event was generated in ISO 8601 format (e.g. 2024-10-22T16:56:45.999Z)
    - `payload` object[], nullable — payload of this entity, e.g. a full Charge object
  - `status` 'pending' | 'completed' | 'failed', required
  - `error` WebhookEntryErrorPayload
    - `errorCode` string, nullable — error code for the entry
    - `errorMessage` string, nullable — error message for the entry
  - `createdAt` string, date-time, required — Creation date of this entry
  - `updatedAt` string, date-time, nullable — Update date of this entry

## Other responses

- `400` — The request is invalid
- `401` — Consumer with provided credentials was not found
- `403` — Operator doesn't have access to resource
- `404` — Entity with the provided id was not found

---

[API](https://skmtc.net/monta/apis/monta-partner-api.md) · [All operations](https://skmtc.net/monta/apis/monta-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/monta/monta-partner-api/revisions/517e18f11015/schema)
