GET api/Notifications/Subscriptions
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of NotificationSubscription| Name | Description | Type | Additional information |
|---|---|---|---|
| CreatedBy | string |
None. |
|
| EmailAddress | string |
None. |
|
| NotificationWindow | integer |
None. |
|
| ReminderWindow | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CreatedBy": "sample string 1",
"EmailAddress": "sample string 2",
"NotificationWindow": 3,
"ReminderWindow": 1
},
{
"CreatedBy": "sample string 1",
"EmailAddress": "sample string 2",
"NotificationWindow": 3,
"ReminderWindow": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfNotificationSubscription xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.API.Model">
<NotificationSubscription>
<CreatedBy>sample string 1</CreatedBy>
<EmailAddress>sample string 2</EmailAddress>
<NotificationWindow>3</NotificationWindow>
<ReminderWindow>1</ReminderWindow>
</NotificationSubscription>
<NotificationSubscription>
<CreatedBy>sample string 1</CreatedBy>
<EmailAddress>sample string 2</EmailAddress>
<NotificationWindow>3</NotificationWindow>
<ReminderWindow>1</ReminderWindow>
</NotificationSubscription>
</ArrayOfNotificationSubscription>