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

# List recent receipts for an inbound webhook subscription

> Returns recent inbound deliveries received on this subscription, newest first. Each entry records the sender's delivery id, the resolved adapter, the verification outcome (verified / unverified / dedup-hit), the dispatch outcome (ok / retry / failed), and any error reason. Use to debug a failing connector or audit what the upstream service has sent.



## OpenAPI

````yaml /openapi.json get /connections/{id}/inbound-webhooks/{webhook_id}/deliveries
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /connections/{id}/inbound-webhooks/{webhook_id}/deliveries:
    get:
      tags:
        - Inbound Webhooks
      summary: List recent receipts for an inbound webhook subscription
      description: >-
        Returns recent inbound deliveries received on this subscription, newest
        first. Each entry records the sender's delivery id, the resolved
        adapter, the verification outcome (verified / unverified / dedup-hit),
        the dispatch outcome (ok / retry / failed), and any error reason. Use to
        debug a failing connector or audit what the upstream service has sent.
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
        - schema:
            type: string
          required: true
          name: webhook_id
          in: path
        - schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 50
          required: false
          name: limit
          in: query
      responses:
        '200':
          description: Recent receipts (verified + unverified)
          content:
            application/json:
              schema:
                type: object
                properties:
                  deliveries:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        inbound_webhook_id:
                          type: string
                        external_delivery_id:
                          type: string
                        received_at:
                          type: string
                        payload:
                          type: string
                        verified:
                          type: boolean
                        processed_at:
                          type: string
                          nullable: true
                        processing_error:
                          type: string
                          nullable: true
                        retry_count:
                          type: number
                        next_attempt_at:
                          type: string
                          nullable: true
                      required:
                        - id
                        - inbound_webhook_id
                        - external_delivery_id
                        - received_at
                        - payload
                        - verified
                        - processed_at
                        - processing_error
                        - retry_count
                        - next_attempt_at
                required:
                  - deliveries
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - unauthorized
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '403':
          description: Caller cannot read this connection
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - forbidden
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '404':
          description: Connection or subscription not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - connection_not_found
                          - inbound_webhook_not_found
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or OAuth Token
      description: Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

````