POST api/System/SendAppMsg
推送App消息
Request Information
URI Parameters
None.
Body Parameters
AppMsgPushRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerCode |
用户编号 |
string |
None. |
| KeyId |
模板Id |
string |
None. |
| TitleReplaceParam |
标题替换参数部分,多个参数通过|来分割,例如 80016655|六哥 |
string |
None. |
| ContentReplaceParam |
内容替换参数部分,多个参数通过|来分割,例如 80016655|六哥 |
string |
None. |
| ReturnUrl |
回跳地址 |
string |
None. |
| SendTime |
消息具体发送时间(格式 yyyy-MM-dd HH:mms:ss) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerCode": "sample string 1",
"keyId": "sample string 2",
"titleReplaceParam": "sample string 3",
"contentReplaceParam": "sample string 4",
"returnUrl": "sample string 5",
"sendTime": "sample string 6"
}
Response Information
Resource Description
推送App消息
WebResultResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
返回结果 |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": true
}