GET api/firenoc/application/GetAdminDetails?status={status}&districtId={districtId}&nocTypeId={nocTypeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
Required |
|
| districtId | integer |
Required |
|
| nocTypeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FireNOCAdminDashboardVM| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalApplications | integer |
None. |
|
| Approved | integer |
None. |
|
| Rejected | integer |
None. |
|
| Submitted | integer |
None. |
|
| UnderVerification | integer |
None. |
|
| Verified | integer |
None. |
|
| Returned | integer |
None. |
|
| UnderApproval | integer |
None. |
|
| BigEst | integer |
None. |
|
| SmallEst | integer |
None. |
|
| FinalNOC | integer |
None. |
|
| ProvisionalNOC | integer |
None. |
|
| RenewalNOC | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalApplications": 1,
"Approved": 2,
"Rejected": 3,
"Submitted": 4,
"UnderVerification": 5,
"Verified": 6,
"Returned": 7,
"UnderApproval": 8,
"BigEst": 9,
"SmallEst": 10,
"FinalNOC": 11,
"ProvisionalNOC": 12,
"RenewalNOC": 13
}
application/xml, text/xml
Sample:
<FireNOCAdminDashboardVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FireNOC.Entities.CustomModels"> <Approved>2</Approved> <BigEst>9</BigEst> <FinalNOC>11</FinalNOC> <ProvisionalNOC>12</ProvisionalNOC> <Rejected>3</Rejected> <RenewalNOC>13</RenewalNOC> <Returned>7</Returned> <SmallEst>10</SmallEst> <Submitted>4</Submitted> <TotalApplications>1</TotalApplications> <UnderApproval>8</UnderApproval> <UnderVerification>5</UnderVerification> <Verified>6</Verified> </FireNOCAdminDashboardVM>