GET api/Notifications/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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
}
application/xml, text/xml
Sample:
<Notifications xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WordBankAPI"> <Id>1</Id> <Not_Status>true</Not_Status> <Not_text>sample string 3</Not_text> <Not_type>64</Not_type> </Notifications>