> ## Documentation Index
> Fetch the complete documentation index at: https://walletconnect-pay-docs-rtomas-improve-docs-sidebar.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a crypto settlement

> Remove a crypto settlement. Future payments in the deleted asset will no longer be auto-settled.



## OpenAPI

````yaml api/2026-02-19.preview.json DELETE /v1/merchants/{merchantId}/settlements/crypto/{id}
openapi: 3.1.0
info:
  title: WalletConnect Pay API
  version: 2026-02-19.preview
servers:
  - url: https://api.pay.walletconnect.com
security:
  - API Key: []
  - ApiKey: []
  - AppId: []
tags:
  - name: Gateway
  - name: Payments
  - name: Refunds
  - name: Merchant Management
  - name: Settlements
  - name: Crypto Settlement
paths:
  /v1/merchants/{merchantId}/settlements/crypto/{id}:
    delete:
      tags:
        - Crypto Settlement
      summary: Delete a crypto settlement
      description: >-
        Remove a crypto settlement. Future payments in the deleted asset will no
        longer be auto-settled.
      operationId: CryptoSettlement_delete
      parameters:
        - in: path
          name: id
          schema:
            type: string
            minLength: 1
            maxLength: 256
            examples:
              - crypto_Xk7nWp8XmQj2YrTv6
          required: true
          description: Crypto settlement ID
        - schema:
            type: string
          in: path
          name: merchantId
          required: true
      responses:
        '200':
          description: Settlement deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Crypto settlement ID
                  deleted:
                    type: boolean
                    description: Whether the settlement was successfully deleted
                required:
                  - id
                  - deleted
              example:
                id: crypto_Xk7nWp8XmQj2YrTv6
                deleted: true
        '404':
          description: Settlement not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Human-readable error message
                  code:
                    type: string
                    const: not_found
                    description: Machine-readable error code
                  details:
                    description: Additional structured error details
                    type: object
                    propertyNames:
                      type: string
                    additionalProperties: {}
                required:
                  - message
                  - code
              examples:
                not_found:
                  summary: Not Found
                  value:
                    code: not_found
                    message: Not Found
components:
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: Api-Key
    ApiKey:
      type: apiKey
      in: header
      name: Api-Key
      description: Private API key for wallet authentication
    AppId:
      type: apiKey
      in: header
      name: App-Id
      description: >-
        Public App ID for wallet authentication. When using this auth mode, the
        Client-Id header is also required.

````