---
title: "Get Webhook Log Detail"
method: GET
path: "/api/v1/webhooks/logs/{log_id}"
tags: ["Webhooks"]
---

# Get Webhook Log Detail

`GET /api/v1/webhooks/logs/{log_id}`

Get the full request/response detail for a single webhook delivery attempt.

## Path parameters

- `log_id` string, uuid, required

## Response `200`

Successful Response

- WebhookLogDetailExternal
  - `id` string, uuid, required — Unique identifier of the delivery attempt.
  - `connector_id` string, uuid, required — Connector this delivery was triggered for.
  - `method` 'GET' | 'POST' | 'PUT' | 'DELETE'
  - `url` string, required — URL the webhook was delivered to.
  - `response_code` integer, nullable — HTTP status code returned by the receiving endpoint.
  - `created_at` string, date-time, nullable
  - `integration_name` string, nullable — Integration of the connector that triggered this delivery.
  - `end_user_name` string, nullable — End user of the connector that triggered this delivery.
  - `origin_id` string, nullable — Origin ID of the end user associated with the connector.
  - `webhook_action` 'connector_synced' | 'connector_sync_started' | 'connector_data_modified' | 'employee_data_changed' | 'connector_sync_error'
  - `webhook_name` string, nullable — Name of the webhook.
  - `request` object[] — Request sent to the webhook url.
  - `response` object[] — Response received from the webhook url.

## Other responses

- `401` — Missing or invalid bearer authentication credentials.
- `403` — The credentials are valid but do not permit access to this resource, e.g. a connector token used on a different API category or a model whose writes are disabled.
- `404` — The requested resource was not found.
- `422` — Validation Error
- `429` — Rate limit exceeded.

---

[API](https://skmtc.net/bindbee/apis/bindbee-apis.md) · [All operations](https://skmtc.net/bindbee/apis/bindbee-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bindbee/bindbee-apis/versions/7da10dc93a21/schema)
