GET api/Notifications
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Notifications| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Not_type | byte |
None. |
|
| Not_text | string |
None. |
|
| Not_Status | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Not_type": 64,
"Not_text": "sample string 3",
"Not_Status": true
},
{
"Id": 1,
"Not_type": 64,
"Not_text": "sample string 3",
"Not_Status": true
}
]
application/xml, text/xml
Sample:
<ArrayOfNotifications xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WordBankAPI">
<Notifications>
<Id>1</Id>
<Not_Status>true</Not_Status>
<Not_text>sample string 3</Not_text>
<Not_type>64</Not_type>
</Notifications>
<Notifications>
<Id>1</Id>
<Not_Status>true</Not_Status>
<Not_text>sample string 3</Not_text>
<Not_type>64</Not_type>
</Notifications>
</ArrayOfNotifications>