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

# Delete Bank Account

> Delete bank account with the corresponding bank account ID



## OpenAPI

````yaml /api_reference/nft.yaml delete /payment-method/ach
openapi: 3.1.0
info:
  version: '1.0'
  title: NFT API
  summary: API to enable direct NFT purchasing
  description: Reference for Sardine Crypto API
servers:
  - url: https://api.sandbox.sardine.ai/v1
    description: Sandbox
  - url: https://api.sardine.ai/v1
    description: Prod Server
security:
  - {}
paths:
  /payment-method/ach:
    delete:
      tags:
        - Payment Method
      summary: Delete Bank Account
      description: Delete bank account with the corresponding bank account ID
      operationId: delete-payment_method-ach-bank_account_id
      parameters:
        - name: bank_account_id
          in: query
          description: Bank Account ID.
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type:
                      oneOf:
                        - type: string
                        - type: boolean
      security:
        - {}
      servers:
        - url: https://api.sandbox.sardine.ai/v1
          description: Sandbox
        - url: https://api.sardine.ai/v1
          description: Prod Server

````