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

# Get webhook delivery



## OpenAPI

````yaml /api/openapi.yaml get /api/v1/webhook-deliveries/{delivery}
openapi: 3.1.0
info:
  title: OpenCluster Control Plane API
  version: 0.1.0
  description: HTTP contract for the OpenCluster product API and inbound webhook endpoints.
  license:
    name: Apache-2.0
servers:
  - url: http://localhost:8080
    description: Local self-hosted deployment
security: []
tags:
  - name: Authentication
  - name: Organizations
  - name: Members
  - name: Sessions
  - name: Policy
  - name: Audit
  - name: Integration Types
  - name: Integrations
  - name: Relays
  - name: Incidents
  - name: Investigations
  - name: Conversations
  - name: Postmortems
  - name: Webhook Deliveries
  - name: Webhook Intake
  - name: Metadata
paths:
  /api/v1/webhook-deliveries/{delivery}:
    parameters:
      - $ref: '#/components/parameters/WebhookDeliveryID'
    get:
      tags:
        - Webhook Deliveries
      summary: Get webhook delivery
      operationId: getWebhookDelivery
      parameters:
        - $ref: '#/components/parameters/Organization'
      responses:
        '200':
          $ref: '#/components/responses/WebhookDelivery'
        default:
          $ref: '#/components/responses/ErrorResponse'
      security:
        - SessionCookie: []
components:
  parameters:
    WebhookDeliveryID:
      name: delivery
      in: path
      required: true
      schema:
        $ref: '#/components/schemas/UUID'
    Organization:
      name: X-OpenCluster-Organization
      in: header
      required: true
      description: Selects the Organization whose data and membership are authorized.
      schema:
        $ref: '#/components/schemas/OrganizationID'
      example: acme-production
  responses:
    WebhookDelivery:
      description: One accepted webhook delivery.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/WebhookDelivery'
    ErrorResponse:
      description: The operation did not complete.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    UUID:
      type: string
      format: uuid
    OrganizationID:
      type: string
      pattern: ^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$
      minLength: 1
      maxLength: 63
    WebhookDelivery:
      type: object
      additionalProperties: false
      required:
        - id
        - integrationId
        - providerIdentity
        - status
        - attempts
        - receivedAt
        - lastAttemptAt
        - nextEligibleAt
      properties:
        id:
          $ref: '#/components/schemas/UUID'
        integrationId:
          $ref: '#/components/schemas/UUID'
        providerIdentity:
          type: string
          minLength: 1
          maxLength: 256
        lifecyclePhase:
          type: string
          enum:
            - firing
            - resolved
        requestId:
          type: string
          maxLength: 128
        status:
          type: string
          enum:
            - accepted
            - processing
            - succeeded
            - failed
        attempts:
          type: integer
          minimum: 0
          maximum: 12
        failureCategory:
          type: string
          minLength: 1
          maxLength: 64
        receivedAt:
          $ref: '#/components/schemas/Timestamp'
        lastAttemptAt:
          oneOf:
            - $ref: '#/components/schemas/Timestamp'
            - type: 'null'
        nextEligibleAt:
          oneOf:
            - $ref: '#/components/schemas/Timestamp'
            - type: 'null'
    Error:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: string
          minLength: 1
          maxLength: 1024
          example: the selected Organization is not available to this caller
        reason:
          type: string
          enum:
            - credential_rejected
            - session_expired
            - session_revoked
        requires:
          type: string
          minLength: 1
          maxLength: 128
    Timestamp:
      type: string
      format: date-time
  securitySchemes:
    SessionCookie:
      type: apiKey
      in: cookie
      name: __Host-oc_session

````