POST api/Notifications
Request Information
URI Parameters
None.
Body Parameters
NotificationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| DeviceId | integer |
None. |
|
| ProjectNumber | integer |
None. |
|
| Message | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerId": 1,
"deviceId": 2,
"projectNumber": 3,
"message": "sample string 4"
}
application/xml, text/xml
Sample:
<NotificationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Catael.NotificationsUI.Models.Notifications"> <CustomerId>1</CustomerId> <DeviceId>2</DeviceId> <Message>sample string 4</Message> <ProjectNumber>3</ProjectNumber> </NotificationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.