---
title: "Get webhook event"
method: GET
path: "/webhooks/{webhook_id}/events/{event_id}"
tags: ["Webhooks"]
---

# Get webhook event

`GET /webhooks/{webhook_id}/events/{event_id}`

Get webhook event by ID

## Path parameters

- `event_id` string, uuid, required
- `webhook_id` string, uuid, required

## Response `200`

Webhook event

- Event — Webhook event object
  - `event_resource` string — Json string of object associated with the event. For example, if your event is ACCOUNT.CREATED, You can refer to Acccount to parse the account event to obtain the ID, status etc.
  - `event_resource_changed_fields` string — Json string of object associated with the event related to a resource change. This only contains those fields that have value changed on the event, and the field values are prior to the resource change event.
  - `event_time` string, date-time — Timestamp of the current event raised
  - `id` string, uuid — Unique event ID of the webhook request. Use event endpoints to get more event summary data
  - `metadata` string — Metadata that stored in the webhook subscription
  - `resource_id` string, uuid — The ID of the resource this event occurred on, if available.
  - `response_history` ResponseHistoryItem[] — Response history of the webhook request
    - `code` integer — Response code from the request
    - `response_body` string — Response body from the request(Length more than 1024 will be trimmed)
    - `response_time` string, date-time — Timestamp that the response is received
    - `sent_time` string, date-time — Timestamp that the request is sent
  - `status` 'FAILED' | 'RETRYING' | 'RUNNING' | 'SUCCESS' — Current event status. Failing event will keep retry until it is purged.
  - `type` 'ACCOUNT.CREATED' | 'ACCOUNT.UPDATED' | 'ACH.INCOMING.FUTURE_DATED' | 'ADDRESS.CREATED' | 'ADDRESS.UPDATED' | 'APPLICATION.CREATED' | 'APPLICATION.UPDATED' | 'BUSINESS.CREATED' | 'BUSINESS.UPDATED' | 'BUSINESS.VERIFICATION_OUTCOME.UPDATED' | 'CARD.CREATED' | 'CARD.DIGITALWALLETTOKEN.CREATED' | 'CARD.DIGITALWALLETTOKEN.UPDATED' | 'CARD.IMAGE.UPDATED' | 'CARD.THREE_DS.AUTHENTICATION' | 'CARD.THREE_DS.DECISION' | 'CARD.UPDATED' | 'CASE.CREATED' | 'CASE.UPDATED' | 'CASH_PICKUP.CREATED' | 'CASH_PICKUP.UPDATED' | 'CREDIT_SCORE.CREATED' | 'CRR.CREATED' | 'CUSTOMER.CREATED' | 'CUSTOMER.KYC_OUTCOME.UPDATED' | 'CUSTOMER.UPDATED' | 'DOCUMENT.CREATED' | 'DOCUMENT.DELETED' | 'DOCUMENT.RETRIEVED' | 'DOCUMENT.UPDATED' | 'DOCUMENT_VERIFICATION_SESSION.CREATED' | 'DOCUMENT_VERIFICATION_SESSION.UPDATED' | 'EDD.CREATED' | 'EDD.DELETED' | 'EXTERNAL_CARD.CREATED' | 'EXTERNAL_CARD.DELETED' | 'EXTERNAL_CARD.UPDATED' | 'EXTERNAL_CARD_TRANSFER.CREATED' | 'EXTERNAL_CARD_TRANSFER.UPDATED' | 'INTEREST.MONTHLY_PAYOUT' | 'INTERNAL_ACCOUNT.CREATED' | 'INTERNAL_ACCOUNT.UPDATED' | 'INTERNAL_TRANSFER.SUCCEEDED' | 'NOTE.CREATED' | 'NOTE.UPDATED' | 'PAYMENT_SCHEDULE.CREATED' | 'PAYMENT_SCHEDULE.PAYMENT.CREATED' | 'PAYMENT_SCHEDULE.UPDATED' | 'PERSON.CREATED' | 'PERSON.UPDATED' | 'PERSON.VERIFICATION_OUTCOME.UPDATED' | 'RESOURCE_MAPPING.CREATED' | 'RESOURCE_MAPPING.DELETED' | 'RESOURCE_MAPPING.UPDATED' | 'SPEND_CONTROL.CREATED' | 'SPEND_CONTROL.UPDATED' | 'SPEND_CONTROL.VIOLATED' | 'STATEMENT.CREATED' | 'TRANSACTION.PENDING.CREATED' | 'TRANSACTION.PENDING.UPDATED' | 'TRANSACTION.POSTED.CREATED' | 'TRANSACTION.POSTED.UPDATED' — All the webhook event types
  - `url` string — URL that the current event will be sent to
  - `webhook_id` string, uuid — Webhook the current event belongs to

## Other responses

- `401` — Unauthorized
- `404` — Resource not found
- `500` — Internal server error

---

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