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

# List webhook deliveries

> Newest first. Attempt metadata only — the delivery payload is not returned. ORG_ADMIN only.



## OpenAPI

````yaml /api-reference/openapi.json get /organizations/me/webhook/deliveries
openapi: 3.1.0
info:
  title: MicroCrop Partner API
  version: 1.0.0
  description: >-
    Parametric crop & livestock insurance API for integrating partners. All
    requests authenticate with an organization API key in the `x-api-key`
    header.
servers:
  - url: https://app.microcrop.app/api
    description: Production (Base mainnet)
security:
  - apiKey: []
tags:
  - name: Farmers
  - name: Plots
  - name: Herds
  - name: Policies
  - name: Payments
  - name: Payouts
  - name: Organization
  - name: Determinations
paths:
  /organizations/me/webhook/deliveries:
    get:
      tags:
        - Organization
      summary: List webhook deliveries
      description: >-
        Newest first. Attempt metadata only — the delivery payload is not
        returned. ORG_ADMIN only.
      parameters:
        - name: status
          in: query
          schema:
            type: string
            enum:
              - PENDING
              - DELIVERED
              - FAILED
        - $ref: '#/components/parameters/page'
        - $ref: '#/components/parameters/limit'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveriesEnvelope'
components:
  parameters:
    page:
      name: page
      in: query
      schema:
        type: integer
        minimum: 1
        default: 1
    limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 50
  schemas:
    WebhookDeliveriesEnvelope:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            deliveries:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: >-
                      Same value as the delivered body.id and the
                      x-microcrop-delivery header.
                  event:
                    type: string
                  url:
                    type: string
                  status:
                    type: string
                    enum:
                      - PENDING
                      - DELIVERED
                      - FAILED
                  attempts:
                    type: integer
                  responseStatus:
                    type: integer
                    nullable: true
                  lastError:
                    type: string
                    nullable: true
                  deliveredAt:
                    type: string
                    format: date-time
                    nullable: true
                  createdAt:
                    type: string
                    format: date-time
                  updatedAt:
                    type: string
                    format: date-time
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````