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

# Listar entregas

> Histórico de tentativas POST para seus endpoints. Filtre por sucesso, evento, webhook ou messageId.



## OpenAPI

````yaml /es/guides/webhooks/api-reference/openapi-webhooks.json get /v1/webhooks/deliveries
openapi: 3.0.3
info:
  title: Notifique API. Webhooks
  description: >-
    Cadastre URLs HTTPS para receber eventos da Notifique em tempo real.
    Autentique com `Authorization: Bearer sk_live_...` ou `x-api-key`. Escopos:
    `webhooks:read`, `webhooks:manage`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Produção
security:
  - ntfWhBearerAuth: []
  - ntfWhApiKeyHeader: []
tags:
  - name: Webhooks
    description: CRUD de endpoints de webhook do workspace.
  - name: Entregas
    description: Histórico e reenvio de tentativas de entrega de webhook.
paths:
  /v1/webhooks/deliveries:
    get:
      tags:
        - Entregas
      summary: Listar entregas
      description: >-
        Histórico de tentativas POST para seus endpoints. Filtre por sucesso,
        evento, webhook ou messageId.
      operationId: ntfWh_listDeliveries
      parameters:
        - name: page
          in: query
          schema:
            type: integer
        - name: limit
          in: query
          schema:
            type: integer
        - name: success
          in: query
          schema:
            type: boolean
          description: Filtra entregas bem-sucedidas ou falhas.
        - name: event
          in: query
          schema:
            type: string
        - name: webhook_id
          in: query
          schema:
            type: string
        - name: messageId
          in: query
          schema:
            type: string
        - name: search
          in: query
          schema:
            type: string
          description: Busca livre no payload ou resposta.
      responses:
        '200':
          description: Lista paginada de entregas.
          content:
            application/json:
              example:
                success: true
                data:
                  - id: cldel_01H...
                    webhookId: clwh_01HABC...
                    event: message.sent
                    success: true
                    httpStatus: 200
                    attempts: 1
                    messageId: clmsg_01H...
                    createdAt: '2026-08-14T19:55:00.000Z'
                pagination:
                  total: 42
                  page: 1
                  limit: 20
                  totalPages: 3
              schema:
                $ref: '#/components/schemas/ntfWh_ListDeliveriesResponse'
        '401':
          $ref: '#/components/responses/Ntf_Unauthorized'
        '403':
          $ref: '#/components/responses/Ntf_Forbidden'
components:
  schemas:
    ntfWh_ListDeliveriesResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              webhookId:
                type: string
              event:
                type: string
              success:
                type: boolean
              httpStatus:
                type: integer
              attempts:
                type: integer
              messageId:
                type: string
              createdAt:
                type: string
        pagination:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            totalPages:
              type: integer
      example:
        success: true
        data:
          - id: clxx...
            webhookId: clxx...
            event: string
            success: true
            httpStatus: 1
            attempts: 1
            createdAt: string
        pagination:
          total: 1
          page: 1
          limit: 1
          totalPages: 1
    Ntf_Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
        message:
          type: string
        code:
          type: string
      example:
        success: false
        error: string
        message: string
        code: string
  responses:
    Ntf_Unauthorized:
      description: Chave ausente, inválida ou revogada.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Ntf_Error'
          example:
            success: false
            error: Unauthorized
            message: Invalid API key
            code: UNAUTHORIZED
    Ntf_Forbidden:
      description: Escopo ausente ou recurso fora da permissão da chave.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Ntf_Error'
          example:
            success: false
            error: Forbidden
            message: Missing scope webhooks:manage
            code: FORBIDDEN
  securitySchemes:
    ntfWhBearerAuth:
      type: http
      scheme: bearer
      description: API key `sk_live_...` ou `sk_test_...`.
    ntfWhApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: Alternativa ao Bearer.

````