GET api/firenoc/application/GetApplicationRenewalStatus?UserId={UserId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FireNOCApplicationRenewal| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationCode | string |
None. |
|
| Name | string |
None. |
|
| ValidityDate | date |
None. |
|
| DaysLeft | integer |
None. |
|
| ShowExpiryMessage | boolean |
None. |
|
| ShowRenewButton | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ApplicationCode": "sample string 1",
"Name": "sample string 2",
"ValidityDate": "2026-09-09T13:48:17.5879573+05:30",
"DaysLeft": 4,
"ShowExpiryMessage": true,
"ShowRenewButton": true
},
{
"ApplicationCode": "sample string 1",
"Name": "sample string 2",
"ValidityDate": "2026-09-09T13:48:17.5879573+05:30",
"DaysLeft": 4,
"ShowExpiryMessage": true,
"ShowRenewButton": true
}
]
application/xml, text/xml
Sample:
<ArrayOfFireNOCApplicationRenewal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FireNOC.Entities.CustomModels">
<FireNOCApplicationRenewal>
<ApplicationCode>sample string 1</ApplicationCode>
<DaysLeft>4</DaysLeft>
<Name>sample string 2</Name>
<ShowExpiryMessage>true</ShowExpiryMessage>
<ShowRenewButton>true</ShowRenewButton>
<ValidityDate>2026-09-09T13:48:17.5879573+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:48:17.5879573+05:30</ValidityDate>
</FireNOCApplicationRenewal>
</ArrayOfFireNOCApplicationRenewal>