POST api/Course/Delete/Clock/Comment
删除打卡评论信息(说明:App端接口,新增需求)
Request Information
URI Parameters
None.
Body Parameters
参数列表
API_DeleteClockComment| Name | Description | Type | Additional information |
|---|---|---|---|
| UserOpenID |
用户OpenID |
string |
None. |
| ClockCommentID |
点评编号 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserOpenID": "sample string 1",
"ClockCommentID": 2
}
Response Information
Resource Description
返状态码: 403:请求不合理,服务器拒绝执行(1、请求参数不正确)... 。404:评论信息不存在... 。401:删除权限不足,不能删除不是自己的评论信息... 。400:删除失败... 。200:删除成功... 。
ActionResult| Name | Description | Type | Additional information |
|---|---|---|---|
| status |
公共返回值: 480:Token无效。 481:请求需要身份验证。 482:身份验证方式不正确。 483:Token已过期。 500:服务器内部错误。 |
integer |
None. |
| msg |
消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 1,
"msg": "sample string 2"
}