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

> Cancel an active subscription and stop recurring payments with proper contract termination.

# Unsubscribe



## OpenAPI

````yaml cardano/managed-contracts-api/openapi.json post /contracts/subscription/unsubscribe
openapi: 3.0.3
info:
  title: Cardano - Managed Contracts API
  description: https://docs.gomaestro.org/getting-started
  contact:
    name: Maestro
    email: info@gomaestro.org
    url: https://gomaestro.org/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.txt
  version: v1.9.0
servers:
  - url: https://mainnet.gomaestro-api.org/v1
    description: Cardano Mainnet
  - url: https://preprod.gomaestro-api.org/v1
    description: Cardano Preprod
  - url: https://preview.gomaestro-api.org/v1
    description: Cardano Preview
security:
  - api-key: []
paths:
  /contracts/subscription/unsubscribe:
    post:
      tags:
        - Subscription
      summary: Unsubscribe
      description: Unsubscribe from a subscription
      operationId: unsubscribe
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UnsubscribeDto'
      responses:
        '202':
          description: Unsubscribed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transaction'
        '400':
          description: Error unsubscribing
components:
  schemas:
    UnsubscribeDto:
      type: object
      properties:
        subscriber_address:
          type: string
          description: Subscriber address
        service_nft_tn:
          type: string
          description: Service NFT token name
        subscriber_nft_tn:
          type: string
          description: Subscriber NFT token name
        current_time:
          type: string
          description: Current timestamp
      required:
        - service_nft_tn
        - subscriber_nft_tn
        - current_time
    Transaction:
      type: object
      description: Unsigned transaction
      properties:
        cbor_hex:
          type: string
          description: CBOR hexadecimal representation of the transaction
        tx_hash:
          type: string
          description: Transaction hash
      required:
        - cbor_hex
        - tx_hash
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: api-key
      description: Project API Key

````