跳到主要内容

系统通知订阅

提示
  • 该功能使用之前需要调用server.sign方法进行签名鉴权
  • 该接口推送延迟为:实时推送

系统通知订阅

  • 方法: notice.subscribe
  • 参数:
参数名是否必须类型说明
channelstrue[]int通道列表,目前只支持系统维护订阅101
  • 示例:
// 订阅系统维护
{
"method": "notice.subscribe",
"params": {"channels": [101]},
"id": 1
}

系统通知推送

  • 方法: notice.update
  • 参数:
参数名类型说明
channelint通道,目前只支持系统维护101
infoobject通知信息
  • 示例:
// 系统维护推送
{
"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
  • 参数:
参数名是否必须类型说明
channelstrue[]int通道列表,目前只支持系统维护订阅101, 空代表取消所有订阅
  • 示例:

// 取消系统维护订阅
{
"method": "notice.unsubscribe",
"params": {"channels": [101]},
"id": 1
}

// 取消所有通知订阅
{
"method": "notice.unsubscribe",
"params": {"channels": []},
"id": 1
}