GET api/firenoc/application/Dashboard?UserID={UserID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
FireNOCUserDashboardModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AppliedCount | integer |
None. |
|
| ApprovedCount | integer |
None. |
|
| RejectedCount | integer |
None. |
|
| RenewalList | Collection of FireNOCApplicationRenewal |
None. |
Response Formats
application/json, text/json
Sample:
{
"AppliedCount": 1,
"ApprovedCount": 2,
"RejectedCount": 3,
"RenewalList": [
{
"ApplicationCode": "sample string 1",
"Name": "sample string 2",
"ValidityDate": "2026-09-09T13:51:02.1812261+05:30",
"DaysLeft": 4,
"ShowExpiryMessage": true,
"ShowRenewButton": true
},
{
"ApplicationCode": "sample string 1",
"Name": "sample string 2",
"ValidityDate": "2026-09-09T13:51:02.1812261+05:30",
"DaysLeft": 4,
"ShowExpiryMessage": true,
"ShowRenewButton": true
}
]
}
application/xml, text/xml
Sample:
<FireNOCUserDashboardModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FireNOC.Entities.CustomModels">
<AppliedCount>1</AppliedCount>
<ApprovedCount>2</ApprovedCount>
<RejectedCount>3</RejectedCount>
<RenewalList>
<FireNOCApplicationRenewal>
<ApplicationCode>sample string 1</ApplicationCode>
<DaysLeft>4</DaysLeft>
<Name>sample string 2</Name>
<ShowExpiryMessage>true</ShowExpiryMessage>
<ShowRenewButton>true</ShowRenewButton>
<ValidityDate>2026-09-09T13:51:02.1812261+05:30</ValidityDate>
</FireNOCApplicationRenewal>
<FireNOCApplicationRenewal>
<ApplicationCode>sample string 1</ApplicationCode>
<DaysLeft>4</DaysLeft>
<Name>sample string 2</Name>
<ShowExpiryMessage>true</ShowExpiryMessage>
<ShowRenewButton>true</ShowRenewButton>
<ValidityDate>2026-09-09T13:51:02.1812261+05:30</ValidityDate>
</FireNOCApplicationRenewal>
</RenewalList>
</FireNOCUserDashboardModel>