POST api/notification/getnotifications
Request Information
URI Parameters
None.
Body Parameters
GetNotificationsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| Keyword | string |
None. |
|
| FilterType | byte |
None. |
|
| PageNo | integer |
None. |
|
| PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"Keyword": "sample string 2",
"FilterType": 64,
"PageNo": 4,
"PageSize": 5
}
application/xml, text/xml
Sample:
<GetNotificationsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModelsLayer"> <FilterType>64</FilterType> <Keyword>sample string 2</Keyword> <PageNo>4</PageNo> <PageSize>5</PageSize> <UserId>1</UserId> </GetNotificationsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.