document
API test
POST
/v1/course/request/add

API description

申请添加,默认状态将变为待审核

Request Header

parameter
type
description
required
token
string
required

Description or Example

# Request ```json { "courseType": 0, // 必填(必选,这个有哪些类型,需要明确) "title": "瑜伽大师", // 必填字段 "cover": "https://www.hsdgvviwvwv,jpg", // 必填 "subTltle": "瑜伽专业课", // 必填 "description": "这里是详细描述", // 必填 "instructorId": "这里就是教练id,别展示,选需要的展示即可", // 必填,谁申请填谁 "category": "课程类别,1001-2000", // 选择 "courseCode": "预留字段", "address": "香港", // 必填 "addressDetail": "皇后大道东001号", // 必填 "beginDate": "2021-06-01T10:00:00", // 必填 "endDate": "2022-06-01T10:00:00", // 必填 "period": "一年(365天)", // 必有 "fitType": 0, // 课程级别:0初,1中,2高,3专业, // 必有,前端写死几种,传code即可 "language": "English" // 非必填,默认中文 "inventory": 100, //库存 } ``` # Response ```json { "code": 200, "msg": "success", "data": null } ``` ## 如果有错误则data里为错误msg的string信息