> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bindbee.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Webhook Log Detail

> Retrieve one delivery attempt in full, including the request Bindbee sent and the response your endpoint returned.

The same fields as a log list entry, plus `request` and `response`. That makes this the only way to see what your endpoint actually replied with on a failed delivery, rather than just its status code.

Take the `log_id` from [List Webhook Logs](/api-reference/webhooks/list-webhook-logs).


## OpenAPI

````yaml get /api/v1/webhooks/logs/{log_id}
openapi: 3.1.0
info:
  title: Bindbee APIs
  version: 0.1.0
servers:
  - url: https://api.bindbee.dev
  - url: https://api-eu.bindbee.dev
security: []
paths:
  /api/v1/webhooks/logs/{log_id}:
    get:
      tags:
        - Webhooks
      summary: Get Webhook Log Detail
      description: >-
        Get the full request/response detail for a single webhook delivery
        attempt.
      operationId: get_webhook_log_detail_api_v1_webhooks_logs__log_id__get
      parameters:
        - name: log_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Log Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookLogDetailExternal'
        '401':
          description: Missing or invalid bearer authentication credentials.
          headers:
            WWW-Authenticate:
              description: Bearer authentication challenge.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: >-
            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.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: The requested resource was not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: Rate limit exceeded.
          headers:
            X-RateLimit-Limit:
              description: Maximum requests allowed in the current window.
              schema:
                type: integer
            X-RateLimit-Remaining:
              description: Requests remaining in the current window.
              schema:
                type: integer
            X-RateLimit-Reset:
              description: >-
                Unix timestamp (seconds since epoch) at which the current
                rate-limit window resets.
              schema:
                type: integer
            Retry-After:
              description: Seconds to wait before retrying the request.
              schema:
                type: integer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    WebhookLogDetailExternal:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Unique identifier of the delivery attempt.
        connector_id:
          type: string
          format: uuid
          title: Connector Id
          description: Connector this delivery was triggered for.
        method:
          anyOf:
            - $ref: '#/components/schemas/HTTPMethod-Output'
            - type: 'null'
          description: HTTP method used to deliver the webhook.
        url:
          type: string
          title: Url
          description: URL the webhook was delivered to.
        response_code:
          anyOf:
            - type: integer
            - type: 'null'
          title: Response Code
          description: HTTP status code returned by the receiving endpoint.
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        integration_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Integration Name
          description: Integration of the connector that triggered this delivery.
        end_user_name:
          anyOf:
            - type: string
            - type: 'null'
          title: End User Name
          description: End user of the connector that triggered this delivery.
        origin_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Origin Id
          description: Origin ID of the end user associated with the connector.
        webhook_action:
          anyOf:
            - $ref: '#/components/schemas/WebhookActions'
            - type: 'null'
          description: Event that triggered this delivery.
        webhook_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Webhook Name
          description: Name of the webhook.
        request:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Request
          description: Request sent to the webhook url.
        response:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Response
          description: Response received from the webhook url.
      type: object
      required:
        - id
        - connector_id
        - url
      title: WebhookLogDetailExternal
    ErrorResponse:
      type: object
      required:
        - detail
      properties:
        detail:
          type: string
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    HTTPMethod-Output:
      type: string
      enum:
        - GET
        - POST
        - PUT
        - DELETE
      title: HTTPMethod
    WebhookActions:
      type: string
      enum:
        - connector_synced
        - connector_sync_started
        - connector_data_modified
        - employee_data_changed
        - connector_sync_error
      title: WebhookActions
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````