GET api/admin/application/OSDashboardCount?UserID={UserID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserID

string

Required

Body Parameters

None.

Response Information

Resource Description

ECApplicationOSDashModel
NameDescriptionTypeAdditional information
PendingNewApplicationCount

integer

None.

PulledApplicationCount

integer

None.

PendingPVRCount

integer

None.

PendingFeeCalculationCount

integer

None.

PendingPrepareCertificateCount

integer

None.

ProcessedApplicationCount

integer

None.

ReturnApplicationCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PendingNewApplicationCount": 1,
  "PulledApplicationCount": 2,
  "PendingPVRCount": 3,
  "PendingFeeCalculationCount": 4,
  "PendingPrepareCertificateCount": 5,
  "ProcessedApplicationCount": 6,
  "ReturnApplicationCount": 7
}

application/xml, text/xml

Sample:
<ECApplicationOSDashModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LAW.Entities.CustomModels">
  <PendingFeeCalculationCount>4</PendingFeeCalculationCount>
  <PendingNewApplicationCount>1</PendingNewApplicationCount>
  <PendingPVRCount>3</PendingPVRCount>
  <PendingPrepareCertificateCount>5</PendingPrepareCertificateCount>
  <ProcessedApplicationCount>6</ProcessedApplicationCount>
  <PulledApplicationCount>2</PulledApplicationCount>
  <ReturnApplicationCount>7</ReturnApplicationCount>
</ECApplicationOSDashModel>