GET api/NotiType
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of NotiType| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Noti_Type | string |
None. |
|
| ReadEnabled | boolean |
None. |
|
| IsEmail | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Noti_Type": "sample string 2",
"ReadEnabled": true,
"IsEmail": true
},
{
"Id": 1,
"Noti_Type": "sample string 2",
"ReadEnabled": true,
"IsEmail": true
}
]
application/xml, text/xml
Sample:
<ArrayOfNotiType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DetailFinderApp.Models">
<NotiType>
<Id>1</Id>
<IsEmail>true</IsEmail>
<Noti_Type>sample string 2</Noti_Type>
<ReadEnabled>true</ReadEnabled>
</NotiType>
<NotiType>
<Id>1</Id>
<IsEmail>true</IsEmail>
<Noti_Type>sample string 2</Noti_Type>
<ReadEnabled>true</ReadEnabled>
</NotiType>
</ArrayOfNotiType>