系统通知订阅
提示
- 该功能使用之前需要调用
server.sign
方法进行签名鉴权 - 该接口推送延迟为:实时推送
系统通知订阅
- 方法:
notice.subscribe
- 参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
channels | true | []int | 通道列表,目前只支持系统维护订阅101 |
- 示例:
// 订阅系统维护
{
"method": "notice.subscribe",
"params": {"channels": [101]},
"id": 1
}
系统通知推送
- 方法:
notice.update
- 参数:
参数名 | 类型 | 说明 |
---|---|---|
channel | int | 通道,目前只支持系统维护101 |
info | object | 通知信息 |
- 示例:
// 系统维护推送
{
"method": "notice.update",
"data": {
"channel": 101,
"info": {
"start_time": 1640793607122,
"end_time": 1640793600122,
"scope": ["FUTURES", "SPOT"],
"protect_duration_start": 1640793600122,
"protect_duration_end": 1640794200321
}
},
"id": null
}
取消系统通知订阅
- 方法:
notice.unsubscribe
- 参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
channels | true | []int | 通道列表,目前只支持系统维护订阅101, 空代表取消所有订阅 |
- 示例:
// 取消系统维护订阅
{
"method": "notice.unsubscribe",
"params": {"channels": [101]},
"id": 1
}
// 取消所有通知订阅
{
"method": "notice.unsubscribe",
"params": {"channels": []},
"id": 1
}