- 注册登录等操作
- 管理员操作
- 用户操作
添加一条评论
开发中
PUT
/user/ques/comment
责任人:未设置
请求参数
Body 参数application/json
userId
string
必需
quesId
string
必需
content
string
必需
示例
{
"userId": "string",
"quesId": "string",
"content": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://127.0.0.1/user/ques/comment' \
--header 'Content-Type: application/json' \
--data-raw '{
"userId": "string",
"quesId": "string",
"content": "string"
}'
返回响应
🟢200成功
application/json
Body
code
string
必需
msg
string
必需
示例
{
"code": "81",
"msg": "Excepteur ullamco aliqua"
}
修改于 2022-08-08 07:56:57