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

API description

修改操作

Request Parameters

parameter
type
description
required
token
string
required

Description or Example

# Request ```json { "courseId": xxxx, "courseType": 0, // 必填(必选,这个有哪些类型,需要明确) "title": "瑜伽大师", // 必填字段 "cover": "https://www.hsdgvviwvwv,jpg", // 必填 "subTltle": "瑜伽专业课", // 必填 "description": "这里是详细描述", // 必填 "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": 2000 // 库存 } ``` > 注意每次修改请求后,课程都将重新变为待审核 # Response ```json { "code": 200, "msg": "success", "data": null } ``` ## 如果有错误则data里为错误msg的string信息