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

# Delivery history for a single subscription



## OpenAPI

````yaml api-reference/openapi.json GET /v1/api/webhooks/{id}/deliveries
openapi: 3.0.3
info:
  title: 9Squid Platform API Gateway
  description: >-
    Unified entry point for all Originator and Investor workflows on the 9Squid
    securitization platform.
  version: '1.0'
  x-readme:
    id: 9squid-docs
  contact: {}
servers:
  - url: https://api.9squid.com
    description: Production
  - url: https://sandbox.api.9squid.com
    description: Sandbox
security: []
tags:
  - name: Originator - Loans
    description: Loan tape upload and management
  - name: Originator - Pools
    description: Securitization pool management
  - name: Originator - Analytics
    description: ALM / TCT Risk analytics
  - name: Originator - Selection Criteria
    description: Stratification check runs and exceptions
  - name: Deal Room - Documents
    description: Document upload and management
  - name: Investor - Deals
    description: Browse and evaluate securitization deals
  - name: Investor - Portfolio
    description: Portfolio positions, summary and reports
  - name: Investor - Subscriptions & Allocations
    description: Order and allocation management
  - name: Alerts
    description: Notifications and alert management
  - name: Webhooks
    description: Webhook subscription and delivery management
paths:
  /v1/api/webhooks/{id}/deliveries:
    get:
      tags:
        - Webhooks
      summary: Delivery history for a single subscription
      operationId: SubscriptionsController_getDeliveries
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: page
          required: false
          in: query
          schema:
            minimum: 1
            default: 1
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 100
            default: 10
            example: 10
            type: number
        - name: webhook_id
          required: false
          in: query
          schema:
            type: string
        - name: event_type
          required: false
          in: query
          schema:
            type: string
            enum:
              - loan.ingested
              - loan.qc.passed
              - loan.qc.failed
              - loan.qc.exception
              - loan.updated
              - loan.repurchase.demanded
              - pool.created
              - pool.finalized
              - pool.stratification.complete
              - pool.constraint.violated
              - deal.created
              - deal.structured
              - deal.priced
              - deal.closed
              - deal.amended
              - deal.called
              - ioi.received
              - subscription.submitted
              - subscription.confirmed
              - allocation.finalized
              - report.generated
              - report.alm.ready
              - report.exception.flagged
              - remittance.received
              - performance.updated
              - delinquency.threshold.breached
              - modification.reported
              - partner.loan.forwarded
              - partner.loan.accepted
              - partner.loan.rejected
              - partner.loan.securitized
              - document.uploaded
              - document.signed
              - document.expired
              - user.created
              - user.deactivated
              - api_key.rotated
              - api_key.revoked
        - name: status
          required: false
          in: query
          schema:
            enum:
              - pending
              - succeeded
              - failed
              - retrying
            type: string
        - name: date_from
          required: false
          in: query
          schema:
            format: date-time
            pattern: >-
              ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
            type: string
        - name: date_to
          required: false
          in: query
          schema:
            format: date-time
            pattern: >-
              ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
            type: string
      responses:
        '200':
          description: Delivery history retrieved
        '404':
          description: Webhook not found
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````