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

# Unsubscribe from business monitoring

> Permanently cancel monitoring subscription for a business.



## OpenAPI

````yaml /api-reference/v1/openapi.json delete /v1/business/{business_id}/subscription
openapi: 3.0.0
info:
  title: Palm Partner API
  description: >-
    The Palm API is identity verification and compliance infrastructure for US
    businesses: onboard businesses, verify businesses and people (KYB/KYC)
    against authoritative sources, monitor them for changes in real time, and
    act on their behalf through filings, formation, and registered agent
    services.
  version: '1.0'
  contact:
    name: Palm Support
    url: https://getpalm.com
    email: support@getpalm.com
  termsOfService: https://getpalm.com/terms
  license:
    name: Proprietary
    url: https://getpalm.com/license
servers:
  - url: https://api.getpalm.com
    description: Production
security: []
tags:
  - name: Registry
    description: Search business registries
  - name: Verification
    description: Identity and business verification
  - name: Monitor
    description: Continuous monitoring of businesses
  - name: Business
    description: Business entity management
  - name: User
    description: User identity management
paths:
  /v1/business/{business_id}/subscription:
    delete:
      tags:
        - Monitor
      summary: Unsubscribe from business monitoring
      description: Permanently cancel monitoring subscription for a business.
      operationId: deleteBusinessSubscription
      parameters:
        - name: business_id
          required: true
          in: path
          description: Business ID
          schema:
            type: string
      responses:
        '200':
          description: Subscription cancelled successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubscriptionDeleteResponse'
        '401':
          description: Unauthorized - Invalid or missing API key
        '404':
          description: Subscription not found
        '429':
          description: Rate limit exceeded
        '500':
          description: Internal server error
      security:
        - ApiKey: []
components:
  schemas:
    SubscriptionDeleteResponse:
      type: object
      properties:
        id:
          type: string
          description: ID of the cancelled subscription
          format: uuid
          example: 123e4567-e89b-12d3-a456-426614174000
        object:
          type: string
          description: Object type identifier
          enum:
            - subscription
          example: subscription
        deleted:
          type: boolean
          description: Indicates whether the subscription was successfully cancelled
          example: true
      required:
        - id
        - object
        - deleted
  securitySchemes:
    ApiKey:
      scheme: bearer
      bearerFormat: opaque
      type: http
      description: 'Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx'

````