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

# Get webhook subscriptions

> Retrieves all webhook subscriptions for the provided application ID



## OpenAPI

````yaml /openapi/integration-openapi.json get /api/v1/webhooks/subscriptions
openapi: 3.0.0
info:
  title: Monument Integration API
  description: Monument Integration API
  version: '1.0'
  contact: {}
servers:
  - url: https://public-api.prd.monument.io
    description: Production
  - url: https://public-api.stg.monument.io
    description: Staging
security: []
tags:
  - name: Portfolios
    description: List portfolios accessible to the API key
  - name: Facilities
    description: Facility retrieval and coverage-option configuration
  - name: Units
    description: Unit listing and MORA execution
  - name: Unit Groups
    description: Unit group listing, rate management, and unit assignment
  - name: Rental Records
    description: Rental record listing, coverage, fees, autopay, and payment links
  - name: Ledger Entries
    description: Ledger entry retrieval at facility and rental-record level
  - name: Leads
    description: Lead listing and lease sending
  - name: Tasks
    description: Task creation and listing for integrations
  - name: Tenants
    description: Tenant listing and person updates
  - name: People
    description: Person listing
  - name: Notes
    description: Note listing and creation for tenants and leads
  - name: Auctions
    description: Auction listing
  - name: Coverage
    description: Portfolio-level coverage CRUD and coverage history
  - name: Summary
    description: Portfolio-level aggregate summaries (insurance enrollment/occupancy)
  - name: Promotions
    description: Promotion listing
  - name: ECRI
    description: Effective Current Rent Increase scheduling
  - name: Item Types
    description: Item type listing per facility
  - name: Delinquencies
    description: Delinquency listing per facility
  - name: Physical Locks
    description: Physical lock assignment and unassignment
  - name: Lead Source Options
    description: Lead source option listing
  - name: Webhooks
    description: Webhook subscription management
  - name: Payments
    description: Payment profile creation
paths:
  /api/v1/webhooks/subscriptions:
    get:
      tags:
        - Webhooks
      summary: Get webhook subscriptions
      description: Retrieves all webhook subscriptions for the provided application ID
      operationId: PrivateWebhooksController_getSubscriptions
      parameters:
        - name: targetUrl
          required: true
          in: query
          schema:
            type: string
        - name: eventType
          required: true
          in: query
          schema:
            type: string
        - name: portfolio
          required: true
          in: query
          schema:
            type: string
        - in: path
          required: true
          name: portfolio
          schema:
            example: abc_selfstorage
        - in: header
          required: true
          name: x-api-key
          schema:
            example: monument-2230012-2312321
            description: >-
              Api key required to authenticate your request. Please reach out to
              monument for a key.
      responses:
        '200':
          description: Successfully retrieved subscriptions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetSubscriptionResponseDto'
        '400':
          description: Bad request - invalid query parameters
        '404':
          description: Application ID not found or not owned
        '502':
          description: Service error
components:
  schemas:
    GetSubscriptionResponseDto:
      type: object
      properties:
        applicationId:
          type: string
          example: app_1234567890
          description: Svix application ID
        endpoints:
          description: >-
            Endpoints visible to this caller. One entry per unique URL with the
            endpoint-level description.
          type: array
          items:
            $ref: '#/components/schemas/EndpointSummaryDto'
        items:
          description: Array of subscription items
          type: array
          items:
            $ref: '#/components/schemas/SubscriptionItemDto'
      required:
        - applicationId
        - endpoints
        - items
    EndpointSummaryDto:
      type: object
      properties:
        url:
          type: string
          example: https://vendor.example.com/webhooks/monument
          description: Webhook URL
        description:
          type: string
          example: webhook
          description: >-
            Description of the webhook endpoint. One description per URL —
            shared across every subscription to this endpoint.
      required:
        - url
        - description
    SubscriptionItemDto:
      type: object
      properties:
        url:
          type: string
          example: https://vendor.example.com/webhooks/monument
          description: Webhook URL
        eventType:
          type: string
          example: move_in
          description: Event type
        facilityUuids:
          example:
            - 11111111-1111-1111-1111-111111111111
          description: Facility UUIDs
          type: array
          items:
            type: string
        unitTypes:
          example:
            - 22222222-2222-2222-2222-222222222222
          description: Unit type UUIDs
          type: array
          items:
            type: string
        amenityUuids:
          example:
            - 33333333-3333-3333-3333-333333333333
          description: Amenity UUIDs
          type: array
          items:
            type: string
        portfolio:
          type: string
          example: test_prefix
          description: Database prefix (portfolio)
      required:
        - url
        - eventType
        - facilityUuids
        - unitTypes
        - amenityUuids
        - portfolio

````