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

# List Invoice Webhooks



## OpenAPI

````yaml /api-reference/manexx-merchant-api.json get /api/v1/external/invoices/{ident}/webhooks
openapi: 3.0.3
info:
  title: Manexx Merchant API
  version: 0.1.0
  description: Public merchant integration API (X-Api-Key).
servers:
  - url: https://api.manexx.com
security: []
tags:
  - name: Merchant API
    description: Merchant API
paths:
  /api/v1/external/invoices/{ident}/webhooks:
    get:
      tags:
        - Merchant API
      summary: List Invoice Webhooks
      operationId: list_invoice_webhooks_api_v1_external_invoices__ident__webhooks_get
      parameters:
        - name: ident
          in: path
          required: true
          schema:
            type: string
            title: Ident
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success_list_WebhookDeliveryDetail__'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    Success_list_WebhookDeliveryDetail__:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        data:
          items:
            $ref: '#/components/schemas/WebhookDeliveryDetail'
          type: array
          title: Data
      type: object
      required:
        - data
      title: Success[list[WebhookDeliveryDetail]]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WebhookDeliveryDetail:
      properties:
        uuid:
          type: string
          format: uuid
          title: Uuid
          description: Delivery id (matches the X-Webhook-Id header).
          example: 7d2e9b10-1a2b-3c4d-5e6f-7a8b9c0d1e2f
        business_uuid:
          type: string
          format: uuid
          title: Business Uuid
          example: b1a2c3d4-0000-0000-0000-000000000001
        invoice_uuid:
          type: string
          format: uuid
          title: Invoice Uuid
          example: 9f2c1e5a-3b7d-4e21-a0c9-1f2e3d4c5b6a
        event:
          type: string
          title: Event
          description: Webhook event name.
          example: invoice.paid
        status:
          type: string
          title: Status
          description: 'Delivery status: pending, delivering, delivered, or failed.'
          example: delivered
        attempts:
          type: integer
          title: Attempts
          description: Attempts made so far.
          example: 1
        max_attempts:
          type: integer
          title: Max Attempts
          description: Total attempts before giving up.
          example: 7
        resend_count:
          type: integer
          title: Resend Count
          description: Manual resends triggered.
          example: 0
        last_status_code:
          title: Last Status Code
          description: HTTP status of the most recent attempt.
          nullable: true
          type: integer
          example: 200
        last_error:
          title: Last Error
          description: Most recent transport error.
          nullable: true
          type: string
        next_attempt_at:
          type: string
          format: date-time
          title: Next Attempt At
          description: When the next retry is scheduled.
          example: '2026-07-16T09:25:11Z'
        delivered_at:
          title: Delivered At
          description: When a 2xx was received.
          nullable: true
          type: string
          format: date-time
          example: '2026-07-16T09:24:12Z'
        created_at:
          type: string
          format: date-time
          title: Created At
          example: '2026-07-16T09:24:11Z'
        updated_at:
          type: string
          format: date-time
          title: Updated At
          example: '2026-07-16T09:24:12Z'
        target_url:
          type: string
          title: Target Url
          description: Destination URL of the delivery.
          example: https://shop.example/webhooks/manexx
        payload:
          type: object
          title: Payload
          description: The JSON body that was sent.
        attempts_history:
          items:
            $ref: '#/components/schemas/WebhookAttemptRead'
          type: array
          title: Attempts History
          description: Per-attempt log.
      type: object
      required:
        - uuid
        - business_uuid
        - invoice_uuid
        - event
        - status
        - attempts
        - max_attempts
        - resend_count
        - next_attempt_at
        - created_at
        - updated_at
        - target_url
        - payload
        - attempts_history
      title: WebhookDeliveryDetail
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    WebhookAttemptRead:
      properties:
        attempt_number:
          type: integer
          title: Attempt Number
          description: Attempt number within the round.
          example: 1
        round:
          type: integer
          title: Round
          description: Delivery round (increments on manual resend).
          example: 1
        triggered_by:
          type: string
          title: Triggered By
          description: 'What triggered the attempt: system, admin, or merchant.'
          example: system
        triggered_uuid_user:
          title: Triggered Uuid User
          nullable: true
          type: string
          format: uuid
        status_code:
          title: Status Code
          description: HTTP status returned by your endpoint.
          nullable: true
          type: integer
          example: 200
        success:
          type: boolean
          title: Success
          description: Whether the attempt got a 2xx.
          example: true
        response_body:
          title: Response Body
          description: Truncated response body.
          nullable: true
          type: string
        error:
          title: Error
          description: Transport error, if any.
          nullable: true
          type: string
        duration_ms:
          type: integer
          title: Duration Ms
          description: Attempt duration in ms.
          example: 142
        created_at:
          type: string
          format: date-time
          title: Created At
          example: '2026-07-16T09:24:11Z'
      type: object
      required:
        - attempt_number
        - round
        - triggered_by
        - success
        - duration_ms
        - created_at
      title: WebhookAttemptRead
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Api-Key

````