## 釘釘推送
**請求方法**:POST
**請求地址**:`dingding_push`
**參數說明:**
| 參數 | 參數類型 | 必須 | 說明 |
| -- | --- | --- | --- |
| title | String | yes | 推送標題 |
| ip | String | no | 運行腳本所在服務器IP(便于區分生產與非生產) |
| data | String/Array | yes | 要推送的數據 |
| type | Integer | yes | 推送類型:1群聊 |
| chatid | String | no | 群聊ID/默認測試群聊 |
| level | Integer/Array | no | 默認0 |
| redo_time | Integer | no | 防重推送時間(默認十分鐘)單位‘秒’ |
level : 0-所有 1-防重推送 2-推送時間
**請求包結構體:**
```
{
"title": "通寶+贖回推送",
"ip": "192.168.100.99",
"data": {
"姓名": "張三",
"手機號": "15890111111"
},
"type": "1",
"chatid": "chatdcb48aed2f6687752e36d345611d0e88" //測試群聊ID
}
或
{
"title": "通寶+贖回推送",
"data": "這是一條消息",
"type": "1",
"chatid": "chatdcb48aed2f6687752e36d345611d0e88" //測試群聊ID
}
```
**返回示例:**
```
{"messageId":"msgCDXMaH3UsySjKePBvJHIxw==","errmsg":"ok","errcode":0}
```