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

# Delete IBAN

> Deactivates and deletes an IBAN. Any future deposits to this IBAN will be rejected. This cannot be undone.



## OpenAPI

````yaml DELETE /ibans/{id}
openapi: 3.1.0
info:
  title: Otim Platform API
  version: v0
  description: >-
    API for managing accounts, entities, transfers, counterparties, and IBANs on
    the Otim platform.
servers:
  - url: https://api.otim.com/v0
security:
  - bearerAuth: []
paths:
  /ibans/{id}:
    delete:
      tags: []
      summary: Delete IBAN
      description: >-
        Deactivates and deletes an IBAN. Any future deposits to this IBAN will
        be rejected. This cannot be undone.
      operationId: deleteIban
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the IBAN.
      responses:
        '204':
          description: IBAN deleted.
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: IBAN not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
          description: A machine-readable error code.
        details:
          type: object
          nullable: true
          description: Additional context about the error.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key prefixed with `sk_`.

````