> ## Documentation Index
> Fetch the complete documentation index at: https://rain-sandbox-trial.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get all webhooks



## OpenAPI

````yaml get /issuing/webhooks
openapi: 3.0.3
info:
  title: Issuing API
  description: This is the specification for Rain's Issuing API.
  termsOfService: https://www.rain.xyz/legal/authorized-user-terms
  contact:
    email: support@rain.xyz
  version: 1.3.0
servers:
  - url: https://api-dev.rain.xyz/v1
    description: Sandbox server
  - url: https://api.rain.xyz/v1
    description: Production server
security: []
tags:
  - name: paymentRoutes
    description: >-
      **Endpoint Migration:** The `/v1/automations` endpoints have been renamed
      to `/v1/payment-routes`. The old `/v1/automations` paths remain available
      as deprecated aliases during migration. Update your integrations to use
      `/v1/payment-routes` as the deprecated endpoints will be removed in a
      future release.
  - name: simulate
    description: >-
      Transaction simulation endpoints for testing integration flows in
      non-production environments. These endpoints let you trigger transaction
      events programmatically to automate integration tests and verify webhook
      handling without depending on external systems or staging real deposits.
      **Sandbox only** — all simulation endpoints return `404 Not Found` in
      production.
  - name: raindrops
    description: >-
      Rewards and points management endpoints. Custom API keys need
      `raindrops:read`/`raindrops:write` for general rewards endpoints and
      `raindrops-travel:read`/`raindrops-travel:write` for travel redemption
      endpoints.
    x-group: rewards
paths:
  /issuing/webhooks:
    get:
      tags:
        - webhooks
      summary: Get all webhooks
      operationId: getIssuingWebhooks
      parameters:
        - name: resourceId
          in: query
          description: Id of the resource to get webhooks for
          required: false
          schema:
            type: string
            format: uuid
        - name: resourceType
          in: query
          description: Type of resource to get webhooks for
          required: false
          schema:
            type: string
        - name: resourceAction
          in: query
          description: Action of resource to get webhooks for
          required: false
          schema:
            type: string
        - name: requestSentAtBefore
          in: query
          description: Get webhooks sent before this date
          required: false
          schema:
            type: string
            format: date-time
        - name: requestSentAtAfter
          in: query
          description: Get webhooks sent after this date
          required: false
          schema:
            type: string
            format: date-time
        - name: responseReceivedAtBefore
          in: query
          description: Get webhooks received before this date
          required: false
          schema:
            type: string
            format: date-time
        - name: responseReceivedAtAfter
          in: query
          description: Get webhooks received after this date
          required: false
          schema:
            type: string
            format: date-time
        - $ref: '#/components/parameters/cursorParam'
        - $ref: '#/components/parameters/limitParam'
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IssuingWebhook'
        '401':
          description: Invalid authorization
        '403':
          description: Forbidden
        '404':
          description: User not found
        '500':
          description: Internal server error
      security:
        - ApiKeyAuth: []
components:
  parameters:
    cursorParam:
      name: cursor
      in: query
      description: The id of the resource after which to start fetching
      required: false
      schema:
        type: string
    limitParam:
      name: limit
      in: query
      description: The number of resources to fetch
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 20
  schemas:
    IssuingWebhook:
      type: object
      required:
        - id
        - requestBody
        - requestSentAt
      properties:
        id:
          type: string
          format: uuid
          description: The webhook's unique identifier
        requestBody:
          type: object
          description: The request body
        requestSentAt:
          type: string
          format: date-time
          description: The time at which the request was sent
        responseReceivedAt:
          type: string
          format: date-time
          description: The time at which the response was received
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: Api-Key
      in: header

````