# 删除聊天机器人图标

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v1/delete-chatbot-icon:
    delete:
      summary: 删除聊天机器人图标
      deprecated: false
      description: |+
        删除聊天机器人图标 API 端点允许您删除与特定聊天机器人关联的图标。

      tags: []
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                chatbotId:
                  type: string
                  description: 要删除其图标的聊天机器人的唯一标识符。
              x-apifox-orders:
                - chatbotId
              required:
                - chatbotId
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
                x-apifox-orders:
                  - message
              example:
                message: Chatbot icon deleted successfully.
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: ''
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4195807/apis/api-157479867-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
  - url: http://test-cn.your-api-server.com
    description: 测试环境
  - url: https://www.chatbase.co
    description: 正式环境
security: []

```
