POST api/Notification/SendPushNotification
Request Information
URI Parameters
None.
Body Parameters
NotificationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Comment | string |
None. |
|
| Page | string |
None. |
|
| TableName | string |
None. |
|
| TaskNumber | string |
None. |
|
| Recipients | Collection of string |
None. |
|
| TaskTitle | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Comment": "sample string 1",
"Page": "sample string 2",
"TableName": "sample string 3",
"TaskNumber": "sample string 4",
"Recipients": [
"sample string 1",
"sample string 2"
],
"TaskTitle": "sample string 5"
}
application/xml, text/xml
Sample:
<NotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppAPI.Models">
<Comment>sample string 1</Comment>
<Page>sample string 2</Page>
<Recipients xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Recipients>
<TableName>sample string 3</TableName>
<TaskNumber>sample string 4</TaskNumber>
<TaskTitle>sample string 5</TaskTitle>
</NotificationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |