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

# List webhook delivery logs



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/webhooks/{id}/delivery-logs
openapi: 3.1.1
info:
  title: ContraForce API
  description: ContraForce platform API for security operations management.
  version: '2.0'
servers: []
security: []
tags:
  - name: Incidents
  - name: Gamebooks
  - name: Data sources
  - name: Service tickets
  - name: Investigation
  - name: Cross-workspace incidents
  - name: Cross-workspace gamebooks
  - name: Cross-workspace data sources
  - name: Webhooks
  - name: Service accounts
  - name: Users
  - name: Azure resources
paths:
  /api/v2/webhooks/{id}/delivery-logs:
    get:
      tags:
        - Webhooks
      summary: List webhook delivery logs
      operationId: v2-list-webhook-delivery-logs
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: from
          in: query
          schema:
            type: string
            format: date-time
        - name: to
          in: query
          schema:
            type: string
            format: date-time
        - name: pageSize
          in: query
          required: true
          schema:
            pattern: ^-?(?:0|[1-9]\d*)$
            type:
              - integer
              - string
            format: int32
        - name: continuationToken
          in: query
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ApiResponseOfPagedResultOfWebhookDeliveryLogDto
        '400':
          description: Bad request — validation or parameter binding failed.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ApiProblemDetails'
        '401':
          description: Unauthorized — missing or invalid Bearer token.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ApiProblemDetails'
        '403':
          description: Forbidden — insufficient scope or workspace access.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ApiProblemDetails'
        '404':
          description: Not found — workspace or resource is missing.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ApiProblemDetails'
        '500':
          description: Internal server error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ApiProblemDetails'
components:
  schemas:
    ApiResponseOfPagedResultOfWebhookDeliveryLogDto:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/PagedResultOfWebhookDeliveryLogDto'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      description: Standard v2 API response envelope for single-item responses.
    ApiProblemDetails:
      type: object
      properties:
        type:
          type:
            - 'null'
            - string
        title:
          type:
            - 'null'
            - string
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          format: int32
        detail:
          type:
            - 'null'
            - string
        instance:
          type:
            - 'null'
            - string
        code:
          type:
            - 'null'
            - string
        requestId:
          type:
            - 'null'
            - string
        timestamp:
          type:
            - 'null'
            - string
        target:
          type:
            - 'null'
            - string
        errors:
          type:
            - 'null'
            - object
          additionalProperties:
            type: array
            items:
              type: string
      description: "API extension of ProblemDetails that surfaces the stable error code,\r\ntrace identifier, timestamp, optional target, and optional field-keyed validation\r\nerror map alongside the RFC 7807 members."
    PagedResultOfWebhookDeliveryLogDto:
      type: object
      properties:
        items:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/WebhookDeliveryLogDto'
        continuationToken:
          type:
            - 'null'
            - string
        hasMore:
          type: boolean
      description: Represents a page of results with a token to load more.
    ResponseMeta:
      type: object
      properties:
        requestId:
          type:
            - 'null'
            - string
        timestamp:
          type:
            - 'null'
            - string
    WebhookDeliveryLogDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        eventId:
          type: string
          format: uuid
        eventType:
          type:
            - 'null'
            - string
        status:
          $ref: '#/components/schemas/WebhookDeliveryStatus'
        httpStatusCode:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          format: int32
        errorMessage:
          type:
            - 'null'
            - string
        eventSourceAccountId:
          type:
            - 'null'
            - string
          description: >-
            An optional reference to the account from which the event
            originated.
          format: uuid
        eventSourceAccountName:
          type:
            - 'null'
            - string
          description: The name of the account from which event originates
        eventSubjectId:
          type:
            - 'null'
            - string
        eventSubjectDisplayName:
          type:
            - 'null'
            - string
        eventSubjectAttributes:
          type:
            - 'null'
            - object
          additionalProperties:
            type: string
        webhookConfigurationId:
          type: string
          format: uuid
        isTest:
          type: boolean
        originalDeliveryId:
          type:
            - 'null'
            - string
          format: uuid
        attemptNumber:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int32
        latencyMs:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          format: int64
        responseSnippet:
          type:
            - 'null'
            - string
        eventPayload:
          type:
            - 'null'
            - string
        eventOccurredAt:
          type:
            - 'null'
            - string
          format: date-time
        completedAt:
          type:
            - 'null'
            - string
          format: date-time
        redeliveryRequestedAt:
          type:
            - 'null'
            - string
          format: date-time
        createdAt:
          type: string
          format: date-time
    WebhookDeliveryStatus:
      enum:
        - Pending
        - Succeeded
        - Failed

````