# 必要商城-三级分类列表

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api-s/categoryThird:
    get:
      summary: 必要商城-三级分类列表
      deprecated: false
      description: 必要商城-三级分类列表
      tags:
        - 作业接口
        - 其他可用接口/必要商城/分类
      parameters:
        - name: secondId
          in: query
          description: ''
          required: true
          example: '622'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  msg:
                    type: string
                    title: 响应消息
                  code:
                    type: integer
                    title: 业务状态码
                  list:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                          title: 数据id
                        thiredId:
                          type: string
                          title: 三级分类id
                        thiredName:
                          type: string
                          title: 三级分类名字
                        secondId:
                          type: string
                          title: 二级分类id
                        thirImgId:
                          type: string
                          title: 三级分类图片id
                          description: 暂时无法使用
                      required:
                        - id
                        - thiredId
                        - thiredName
                        - secondId
                        - thirImgId
                      x-apifox-orders:
                        - id
                        - thiredId
                        - thiredName
                        - secondId
                        - thirImgId
                    title: 响应数据
                required:
                  - msg
                  - code
                  - list
                x-apifox-orders:
                  - msg
                  - code
                  - list
              example:
                msg: 恭喜你, 操作成功
                code: 200
                list:
                  - id: 1
                    thiredId: '624'
                    thiredName: 咖啡粉
                    secondId: '622'
                    thirImgId: 2e30bb68-2707-11e9-b531-e0accb719100
                  - id: 2
                    thiredId: '623'
                    thiredName: 咖啡豆
                    secondId: '622'
                    thirImgId: 2e3d7ff5-2707-11e9-8c2c-e0accb719100
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 作业接口
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/1937884/apis/api-63647756-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
