# 推送模式
- 1. 获取当前推送模式
~~~[api]
get:/config/get/ptype
<<<
success
{
"status": true,
"resdata": {
"ptype": 0,
"ptypename": "单推模式"
}
}
~~~
- 2. 更新当前推送模式
~~~[api]
PATCH:/config/patch/ptype
*int:ptype=0#推送模式 {0:单,1:复}
<<<
success
{
"status": true
}
<<<
error
{
"status": false
}
~~~