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

# Delete KYB answer

> Delete a specific KYB answer



## OpenAPI

````yaml delete /v1/kyb/{kyb_id}
openapi: 3.0.0
info:
  title: KYB API
  version: 1.0.0
  description: API documentation for Know Your Business verification flows
servers: []
security:
  - bearerAuth: []
paths:
  /v1/kyb/{kyb_id}:
    parameters:
      - name: kyb_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
        description: KYB answer UUID
    delete:
      tags:
        - KYB Answers
      summary: Delete KYB answer
      description: Delete a specific KYB answer
      responses:
        '200':
          description: Answer deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Answer deleted successfully
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````