GET api/GetNotificationCount/{CompanyId}/{ProjectId}/{FlatId}/{CustomerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId | integer |
Required |
|
| ProjectId | integer |
Required |
|
| FlatId | integer |
Required |
|
| CustomerId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of NotificationCountModal| Name | Description | Type | Additional information |
|---|---|---|---|
| NotificationCount | integer |
None. |
|
| IsShow | integer |
None. |
|
| GreetingHead | string |
None. |
|
| GreetingTemplate | string |
None. |
|
| GreetingURL | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"NotificationCount": 1,
"IsShow": 2,
"GreetingHead": "sample string 3",
"GreetingTemplate": "sample string 4",
"GreetingURL": "sample string 5"
},
{
"NotificationCount": 1,
"IsShow": 2,
"GreetingHead": "sample string 3",
"GreetingTemplate": "sample string 4",
"GreetingURL": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfNotificationCountModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RECOSMart_Api">
<NotificationCountModal>
<GreetingHead>sample string 3</GreetingHead>
<GreetingTemplate>sample string 4</GreetingTemplate>
<GreetingURL>sample string 5</GreetingURL>
<IsShow>2</IsShow>
<NotificationCount>1</NotificationCount>
</NotificationCountModal>
<NotificationCountModal>
<GreetingHead>sample string 3</GreetingHead>
<GreetingTemplate>sample string 4</GreetingTemplate>
<GreetingURL>sample string 5</GreetingURL>
<IsShow>2</IsShow>
<NotificationCount>1</NotificationCount>
</NotificationCountModal>
</ArrayOfNotificationCountModal>