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

# Get Webhook Delivery Logs

Retrieve the delivery logs for a specific webhook. Returns a list of all delivery attempts including the payload sent, response code, and debug information for troubleshooting.


## OpenAPI

````yaml openapi/webhooks.yaml get /networks/webhooks/{webhookId}/logs
openapi: 3.0.3
info:
  title: Everflow Network API - Webhooks
  description: Endpoints for managing webhook configurations in the Everflow network.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Webhooks
    description: Endpoints for managing webhooks.
paths:
  /networks/webhooks/{webhookId}/logs:
    get:
      tags:
        - Webhooks
      summary: Get Webhook Delivery Logs
      parameters:
        - in: path
          name: webhookId
          required: true
          schema:
            type: integer
          description: The webhook ID.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  logs:
                    type: array
                    items:
                      $ref: '#/components/schemas/WebhookLog'
      security:
        - API Key: []
components:
  schemas:
    WebhookLog:
      type: object
      description: A webhook delivery log entry.
      properties:
        network_webhook_log_id:
          type: integer
          example: 5801398
          description: Unique log entry ID.
        network_webhook_id:
          type: integer
          example: 50
          description: The webhook ID this log belongs to.
        network_id:
          type: integer
          example: 1
          description: Network ID.
        unix_timestamp:
          type: integer
          example: 1774638805
          description: Unix timestamp of the delivery attempt.
        webhook_url:
          type: string
          example: https://example.com/webhook
          description: The URL the webhook was sent to.
        http_method:
          type: string
          example: post
          enum:
            - get
            - post
          description: HTTP method used for the delivery.
        payload:
          type: string
          example: '{"network_affiliate_id":123,"name":"Example Partner"}'
          description: >
            JSON-encoded string of the event payload that was sent to the
            webhook URL.
        response_code:
          type: integer
          example: 200
          description: HTTP response status code returned by the webhook URL.
        debug_information:
          type: string
          example: >-
            Source : Webhook 50 (network 1) with target URL
            https://example.com/webhook. Event : AFFILIATE_UPDATED (object
            AFFILIATE ID 123).
          description: >
            Debug details including the event type, object ID, retry count, and
            response headers.
        is_success:
          type: boolean
          example: true
          description: Whether the delivery was successful.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````