评论
开发中
POST
/note/post_comment
请求参数
Body 参数application/json
note_id
string
必需
guid
string
必需
at_users
array
必需
comment
string
必需
示例
{
"note_id": "6588fa35000000003a00bb97234",
"guid": "bc9de1ad-42ac-4a85-ae29-eb5f8a1feee8",
"at_users": [],
"comment": "评论"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/note/post_comment' \
--header 'Content-Type: application/json' \
--data-raw '{
"note_id": "6588fa35000000003a00bb97234",
"guid": "bc9de1ad-42ac-4a85-ae29-eb5f8a1feee8",
"at_users": [],
"comment":"评论"
}'
返回响应
🟢200成功
application/json
Body
err_msg
string
必需
err_code
integer
必需
data
object
必需
success
boolean
必需
msg
string
必需
data
null
必需
code
integer
必需
hint
string
必需
示例
{
"err_msg": "success",
"err_code": 0,
"data": {
"success": false,
"msg": "参数错误",
"data": null,
"code": -9109
},
"hint": "170445128355582389281755"
}