# 根据文件名称获取对应标签

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/admin/label_file_binding/get:
    get:
      summary: 根据文件名称获取对应标签
      deprecated: false
      description: ''
      tags:
        - admin/tag
      parameters:
        - name: file_name
          in: query
          description: 文件名称
          required: false
          example: ''
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: false
          example: '{{alist_token}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        type:
                          type: integer
                        name:
                          type: string
                        create_time:
                          type: string
                      required:
                        - id
                        - type
                        - name
                        - create_time
                      x-apifox-orders:
                        - id
                        - type
                        - name
                        - create_time
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: admin/tag
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/6849786/apis/api-327961240-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
