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

# Update jetton verification status



## OpenAPI

````yaml https://tokens.swap.coffee/api/v3/openapi.yaml put /api/v3/jettons/{address}/verification
openapi: 3.0.3
info:
  title: Tokens Service
  version: 3.0.0-beta
servers:
  - url: https://tokens.swap.coffee
  - url: http://localhost:8080
security:
  - {}
  - ApiKey: []
tags:
  - name: Accounts
  - name: Jettons
  - name: Labels
  - name: Contracts
paths:
  /api/v3/jettons/{address}/verification:
    put:
      tags:
        - Jettons
      summary: Update jetton verification status
      operationId: updateJettonVerification
      parameters:
        - name: address
          in: path
          required: true
          description: The jetton master address in any form
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiJettonUpdateVerificationRequest'
      responses:
        '200':
          description: Jetton verification status updated successfully
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '404':
          description: Jetton not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        default:
          $ref: '#/components/responses/ApiError'
components:
  schemas:
    ApiJettonUpdateVerificationRequest:
      type: object
      required:
        - verification
      properties:
        verification:
          $ref: '#/components/schemas/ApiJettonVerification'
        interface_name:
          type: string
          example: jetton_wallet_tonfun
        include_hash:
          type: boolean
          example: false
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          example: error description
    ApiJettonVerification:
      type: string
      enum:
        - BLACKLISTED
        - UNKNOWN
        - COMMUNITY
        - WHITELISTED
  responses:
    ApiError:
      description: Some error during request processing
      content:
        application/json:
          schema:
            type: object
            required:
              - error
            properties:
              error:
                type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````