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

# List gVault webhook events

Inspect delivery status and payloads across the organization's gVault webhook
registrations.


## OpenAPI

````yaml swagger/swagger-combined.yaml GET /v2/gvaults/webhooks/events
openapi: 3.0.0
info:
  title: Ground API
  description: Core API for portfolio wallets, deposits, withdrawals, and webhooks.
  version: 2.0.0
servers:
  - url: https://sandbox.groundtech.co
  - url: https://production.groundtech.co
security:
  - bearerAuth: []
tags:
  - name: System
    description: System health and utility endpoints.
  - name: Sandbox Faucets
    description: Sandbox-only test token faucets.
  - name: Portfolio Wallets
    description: >-
      Portfolio wallets with strategy allocation, deposits, withdrawals, and
      yield positions.
  - name: gVaults
    description: App-specific Ground vaults with customer access and fee sharing.
  - name: Webhook Endpoints
    description: Webhook endpoint management for portfolio wallet notifications.
paths:
  /v2/gvaults/webhooks/events:
    get:
      tags:
        - gVault Webhooks
      summary: List all gVault webhook events
      operationId: listGVaultWebhookEvents
      parameters:
        - name: cursor
          in: query
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            default: 25
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: Product-scoped delivery events.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GVaultWebhookEventList'
              example:
                data:
                  - id: 73a8e0c9-c20d-4b10-b9a4-0f0ff6b5cb9c
                    registrationId: 6b6a0502-9d38-4f94-83fe-06706adbdc51
                    eventType: fee_wrapper.status_changed
                    payload:
                      feeWrapperId: 8f4c52d7-62ab-4db9-a964-92f481f6b851
                      status: ready
                      contractAddress: '0x7C4A1cb5a3D5C3c4E019c3f6aB29A0f98C21B814'
                      transactionHash: >-
                        0xabababababababababababababababababababababababababababababababab
                    status: completed
                    attemptCount: 1
                    deliveredAt: '2026-09-03T17:35:41.000Z'
                    lastError: null
                    createdAt: '2026-09-03T17:35:39.000Z'
                    updatedAt: '2026-09-03T17:35:41.000Z'
                nextCursor: null
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    GVaultWebhookEventList:
      type: object
      required:
        - data
        - nextCursor
      additionalProperties: false
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/GVaultWebhookEvent'
        nextCursor:
          type: string
          nullable: true
      example:
        data:
          - id: 73a8e0c9-c20d-4b10-b9a4-0f0ff6b5cb9c
            registrationId: 6b6a0502-9d38-4f94-83fe-06706adbdc51
            eventType: fee_wrapper.status_changed
            payload:
              feeWrapperId: 8f4c52d7-62ab-4db9-a964-92f481f6b851
              status: ready
            status: completed
            attemptCount: 1
            deliveredAt: '2026-09-03T17:35:41.000Z'
            lastError: null
            createdAt: '2026-09-03T17:35:39.000Z'
            updatedAt: '2026-09-03T17:35:41.000Z'
        nextCursor: null
    GVaultWebhookEvent:
      type: object
      required:
        - id
        - registrationId
        - eventType
        - payload
        - status
        - attemptCount
        - createdAt
        - updatedAt
      additionalProperties: false
      properties:
        id:
          type: string
          format: uuid
        registrationId:
          type: string
          format: uuid
        eventType:
          $ref: '#/components/schemas/GVaultWebhookEventType'
        payload:
          type: object
          additionalProperties: true
        status:
          type: string
          enum:
            - pending
            - completed
            - failed
        attemptCount:
          type: integer
          minimum: 0
        deliveredAt:
          type: string
          format: date-time
          nullable: true
        lastError:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      example:
        id: 73a8e0c9-c20d-4b10-b9a4-0f0ff6b5cb9c
        registrationId: 6b6a0502-9d38-4f94-83fe-06706adbdc51
        eventType: fee_wrapper.status_changed
        payload:
          feeWrapperId: 8f4c52d7-62ab-4db9-a964-92f481f6b851
          status: ready
        status: completed
        attemptCount: 1
        deliveredAt: '2026-09-03T17:35:41.000Z'
        lastError: null
        createdAt: '2026-09-03T17:35:39.000Z'
        updatedAt: '2026-09-03T17:35:41.000Z'
    AuthErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Authentication or authorization error message.
        message:
          type: string
          nullable: true
          description: Additional auth middleware detail, when present.
        code:
          type: string
          nullable: true
          enum:
            - unauthenticated
            - forbidden
          description: >-
            Some auth and scope failures include a stable code; middleware
            errors may omit it.
    GVaultWebhookEventType:
      type: string
      enum:
        - gvault.allowlist.status_changed
        - fee_wrapper.status_changed
        - fee_wrapper.fees.status_changed
        - fee_wrapper.allowlist.status_changed
  responses:
    Unauthorized:
      description: >-
        The request is missing a valid bearer token, or the token is invalid or
        expired.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AuthErrorResponse'
          example:
            error: Unauthenticated request
            message: Missing or invalid bearer token
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````