POST api/v1/notifications
Request Information
URI Parameters
None.
Body Parameters
Collection of NotificationRequestName | Description | Type | Additional information |
---|---|---|---|
PanelistId | integer |
None. |
|
Type | integer |
None. |
|
Message | string |
None. |
|
Description | string |
None. |
|
Link | string |
None. |
Request Formats
application/json, text/json
Sample:
[ { "panelistId": 1, "type": 2, "message": "sample string 3", "description": "sample string 4", "link": "sample string 5" }, { "panelistId": 1, "type": 2, "message": "sample string 3", "description": "sample string 4", "link": "sample string 5" } ]
text/xml
Sample:
<ArrayOfNotificationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity"> <NotificationRequest> <Description>sample string 4</Description> <Link>sample string 5</Link> <Message>sample string 3</Message> <PanelistId>1</PanelistId> <Type>2</Type> </NotificationRequest> <NotificationRequest> <Description>sample string 4</Description> <Link>sample string 5</Link> <Message>sample string 3</Message> <PanelistId>1</PanelistId> <Type>2</Type> </NotificationRequest> </ArrayOfNotificationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpStatusCodeResponse Formats
application/json, text/json
Sample:
100
text/xml
Sample:
<HttpStatusCode xmlns="http://schemas.datacontract.org/2004/07/System.Net">Continue</HttpStatusCode>