GET
/
webhooks
/
{webhook_id}
/
events
/
{event_id}
Get webhook event
curl --request GET \
  --url https://api.synctera.com/v1/webhooks/{webhook_id}/events/{event_id} \
  --header 'Authorization: Bearer <token>'
{
  "event_resource": "<string>",
  "event_resource_changed_fields": "<string>",
  "event_time": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "metadata": {},
  "resource_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "response_history": [
    {
      "code": 123,
      "response_body": "<string>",
      "response_time": "2023-11-07T05:31:56Z",
      "sent_time": "2023-11-07T05:31:56Z"
    }
  ],
  "status": "FAILED",
  "type": "ADVERSE_ACTION.CREATED",
  "url": "<string>",
  "webhook_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

event_id
string<uuid>
required

Webhook event ID

Example:

"b01db9c7-78f2-4a99-8aca-1231d32f9b96"

webhook_id
string<uuid>
required

Webhook ID

Example:

"b01db9c7-78f2-4a99-8aca-1231d32f9b96"

Response

200
application/json

Webhook event

Webhook event object