course_one.md 2.5 KB

GET /course/{id}

  • method: GET
  • version: v1.0
  • describe: 获取单个课程
参数说明
name type null desc
id string no 编码
返回字段说明
name type desc
id string 课id
code string 编码
name string 名称
digest string 描述
tags array 标签名数组
subItemList array 课数组
supportList array 周边数组
cpId string 内容提供商id
cpName string 内容提供商名字
status string 状态
gmtCreated int 创建时间
gmtModified int 修改时间
结果示例
{
    "code": 200,
    "success": true,
    "message": null,
    "data": {
        "id": 1511767193919357,
        "code": "C-test-311",
        "name": "小学311",
        "title": null,
        "digest": null,
        "detail": null,
        "keyword": null,
        "cvImgList": null,
        "bgImgList": null,
        "status": null,
        "gmtCreated": null,
        "gmtModified": null,
        "subItemList": [
            {
                "id": 1511509291305739,
                "code": "K-test-311",
                "name": "小学310",
                "digest": null,
                "type": "LESSON",
                "status": null,
                "gmtCreated": null,
                "gmtModified": null
            },
            {
                "id": 1511504034666794,
                "code": "K-test-310",
                "name": "小学311",
                "digest": null,
                "type": "LESSON",
                "status": null,
                "gmtCreated": null,
                "gmtModified": null
            }
        ],
        "supportList": [
            {
                "id": 1511835822190182,
                "code": "S-test-310",
                "name": "小学310",
                "title": null,
                "digest": null,
                "detail": null,
                "imgIds": null,
                "status": null,
                "gmtCreated": null,
                "gmtModified": null
            },
            {
                "id": 1511837565816595,
                "code": "S-test-311",
                "name": "小学311",
                "title": null,
                "digest": null,
                "detail": null,
                "imgIds": null,
                "status": null,
                "gmtCreated": null,
                "gmtModified": null
            }
        ]
    }
}