GET api/GetResevationCountDashboard?jsonData={jsonData}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
jsonData

string

Required

Body Parameters

None.

Response Information

Resource Description

GetDashboardResevationCountResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Data

GetDashboardResevationCountDashboardVm

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Data": {
    "DepositPendingAmount": 1.1,
    "DepositPendingCount": 1,
    "OnNoticePeriod": 2,
    "NOCPendingCount": 3,
    "KYCPending": 4,
    "ClosedAndNotSettledCount": 5,
    "ClosedAndNotSettledAmount": 6.1,
    "OnNoticePeriodAmount": 7.1
  }
}

application/xml, text/xml

Sample:
<GetResevationCountDashboardController.GetDashboardResevationCountResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.PG">
  <Data>
    <ClosedAndNotSettledAmount>6.1</ClosedAndNotSettledAmount>
    <ClosedAndNotSettledCount>5</ClosedAndNotSettledCount>
    <DepositPendingAmount>1.1</DepositPendingAmount>
    <DepositPendingCount>1</DepositPendingCount>
    <KYCPending>4</KYCPending>
    <NOCPendingCount>3</NOCPendingCount>
    <OnNoticePeriod>2</OnNoticePeriod>
    <OnNoticePeriodAmount>7.1</OnNoticePeriodAmount>
  </Data>
  <Success>true</Success>
</GetResevationCountDashboardController.GetDashboardResevationCountResponse>