- BIT101 API总览
- 用户模块
- 上传模块
- 交互反馈模块
- 文章模块
- 教务模块
- 课程模块
- 变量模块
- 消息模块
- 话廊模块
- 治理模块
- 学校教务接口
- 订阅模块
发送系统消息
开发中
POST
/messages/system
请求参数
Header 参数
fake-cookie
string
需要管理员权限
示例值:
{{fake_cookie}}
Body 参数application/json
to_uid
integer
必需
obj
string
必需
link_obj
string
必需
text
string
必需
from_uid
integer
必需
示例
{
"obj": "user3",
"link_obj": "poster10",
"text": "举报受理成功",
"from_uid": 2,
"to_uid": 3
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://bit101.flwfdd.xyz/messages/system' \
--header 'fake-cookie: {{fake_cookie}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"obj": "user3",
"link_obj": "poster10",
"text": "举报受理成功",
"from_uid": 2,
"to_uid": 3
}'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{}
🟠404记录不存在
🟠400参数不正确
🔴500服务器错误
🟠401身份验证失败
修改于 2023-10-30 08:25:12