# 服务器清理（已废弃）

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/vip-ip/dir/delete:
    post:
      summary: 服务器清理（已废弃）
      deprecated: false
      description: '- 当前接口已废弃，如需清理，请调用/v1/vip-ip/reset接口'
      tags:
        - 旗舰版
      parameters: []
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                token:
                  description: 后台生成的token
                  example: '{{token}}'
                  type: string
                domain_id:
                  description: 域名ID(可在脆球后台获取，或者通过/v1/domain/list接口获取，id字段即为domain_id)
                  example: '12345678'
                  type: string
                group_pay_id:
                  description: >-
                    付费组ID(可在脆球后台获取，或者通过/v1/group-pay/list接口获取，id字段即为group_pay_id)
                  example: '12345678'
                  type: string
                path_id:
                  description: 删除文件类型：1缓存 2日志 3备份
                  example: '1'
                  type: string
              required:
                - token
                - domain_id
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                  data:
                    type: object
                    properties: {}
                    x-apifox-orders: []
                required:
                  - code
                  - msg
                  - data
                x-apifox-orders:
                  - code
                  - msg
                  - data
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 旗舰版
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/2485881/apis/api-185507632-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://domain-open-api.cuiqiu.com
    description: 正式环境
security: []

```
