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

# Tokenization remove



## OpenAPI

````yaml /api-reference/tokenization-api.json post /api/v1/tokenization/remove
openapi: 3.1.0
info:
  title: OpenAPI definition
  version: v0
servers:
  - url: http://localhost:8080/cardcenter
    description: Generated server url
security: []
paths:
  /api/v1/tokenization/remove:
    post:
      tags:
        - Waffo Tokenization API
      summary: Tokenization remove
      operationId: removeToken
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TokenRemoveRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResponseVoid'
components:
  schemas:
    TokenRemoveRequest:
      type: object
      properties:
        merchantInfo:
          $ref: '#/components/schemas/MerchantInfo'
          description: Merchant info.
        merchantUserId:
          type: string
          description: >-
            The merchant's userId must be unique for each user of merchants.
            Required when user intends to unbind all card tokens.
          maxLength: 64
          minLength: 0
        tokenId:
          type: string
          description: >-
            The tokenization id of card info. The merchant needs to securely
            store this field, and subsequently, when initiating user payments or
            backend deductions, this token can be used to replace the user's
            card information for payment. Required when user intends to unbind a
            card token by tokenId.
          maxLength: 64
          minLength: 0
        tokenType:
          type: string
          description: 'Types of requested tokenization: CARD.'
          maxLength: 32
          minLength: 0
      required:
        - merchantInfo
        - tokenType
    ResponseVoid:
      type: object
      description: Standard API response envelope.
      properties:
        code:
          type: string
          description: >-
            Result code. "0" indicates success; any other value indicates
            failure.
        msg:
          type: string
          description: Human-readable message corresponding to the result code.
        msgParams:
          type: object
          additionalProperties: {}
          description: >-
            Key-value parameters associated with the error message, used for
            templated errors.
        data:
          description: Response payload. Empty when the request fails.
        success:
          type: boolean
        fail:
          type: boolean
    MerchantInfo:
      type: object
      properties:
        merchantId:
          type: string
          description: Merchant id assigned by Waffo.
          maxLength: 32
          minLength: 0
        subMerchantId:
          type: string
          description: Sub merchant id assigned by Waffo.
          maxLength: 64
          minLength: 0
      required:
        - merchantId

````