GET api/DashboardApi?HdId={HdId}&BrId={BrId}&ClassId={ClassId}&SessionId={SessionId}&FeeTerm={FeeTerm}&UserType={UserType}&IsSchoolList={IsSchoolList}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
HdId

string

Required

BrId

string

Required

ClassId

string

Required

SessionId

decimal number

Required

FeeTerm

integer

Required

UserType

string

Required

IsSchoolList

boolean

Required

Body Parameters

None.

Response Information

Resource Description

DashboardInfo
NameDescriptionTypeAdditional information
ListClassPlan

Collection of DropDown

None.

ListFeeTerm

Collection of DropDown

None.

ListSchool

Collection of SchoolInfo

None.

ListBranch

Collection of BranchInfo

None.

TotalStrength

integer

None.

CurrentSessionStudent

integer

None.

PreviousSessionStudent

integer

None.

CurrentSessionStudentInactive

integer

None.

ReceivableStudent

integer

None.

ReceivedStudent

integer

None.

FeeTotal

decimal number

None.

FeeReceived

decimal number

None.

FeesReceivable

decimal number

None.

NotClearedCheckAmount

decimal number

None.

CurrentMonthActive

decimal number

None.

CurrentMonthInActive

decimal number

None.

TotalStudents

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ListClassPlan": [
    {
      "Id": 1.0,
      "Name": "sample string 2"
    },
    {
      "Id": 1.0,
      "Name": "sample string 2"
    }
  ],
  "ListFeeTerm": [
    {
      "Id": 1.0,
      "Name": "sample string 2"
    },
    {
      "Id": 1.0,
      "Name": "sample string 2"
    }
  ],
  "ListSchool": [
    {
      "Id": 1.0,
      "EncryptId": "sample string 2",
      "Name": "sample string 3",
      "StudentCount": 1
    },
    {
      "Id": 1.0,
      "EncryptId": "sample string 2",
      "Name": "sample string 3",
      "StudentCount": 1
    }
  ],
  "ListBranch": [
    {
      "Id": 1.0,
      "EncryptId": "sample string 2",
      "Name": "sample string 3",
      "SchoolId": 4.0,
      "SchoolName": "sample string 5",
      "StudentCount": 1,
      "BranchAddress": "sample string 6"
    },
    {
      "Id": 1.0,
      "EncryptId": "sample string 2",
      "Name": "sample string 3",
      "SchoolId": 4.0,
      "SchoolName": "sample string 5",
      "StudentCount": 1,
      "BranchAddress": "sample string 6"
    }
  ],
  "TotalStrength": 1,
  "CurrentSessionStudent": 1,
  "PreviousSessionStudent": 1,
  "CurrentSessionStudentInactive": 1,
  "ReceivableStudent": 1,
  "ReceivedStudent": 1,
  "FeeTotal": 1.0,
  "FeeReceived": 1.0,
  "FeesReceivable": 1.0,
  "NotClearedCheckAmount": 1.0,
  "CurrentMonthActive": 1.0,
  "CurrentMonthInActive": 1.0,
  "TotalStudents": 1
}

application/xml, text/xml

Sample:
<DashboardInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataModels">
  <CurrentMonthActive>1</CurrentMonthActive>
  <CurrentMonthInActive>1</CurrentMonthInActive>
  <CurrentSessionStudent>1</CurrentSessionStudent>
  <CurrentSessionStudentInactive>1</CurrentSessionStudentInactive>
  <FeeReceived>1</FeeReceived>
  <FeeTotal>1</FeeTotal>
  <FeesReceivable>1</FeesReceivable>
  <ListBranch>
    <BranchInfo>
      <BranchAddress>sample string 6</BranchAddress>
      <EncryptId>sample string 2</EncryptId>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <SchoolId>4</SchoolId>
      <SchoolName>sample string 5</SchoolName>
      <StudentCount>1</StudentCount>
    </BranchInfo>
    <BranchInfo>
      <BranchAddress>sample string 6</BranchAddress>
      <EncryptId>sample string 2</EncryptId>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <SchoolId>4</SchoolId>
      <SchoolName>sample string 5</SchoolName>
      <StudentCount>1</StudentCount>
    </BranchInfo>
  </ListBranch>
  <ListClassPlan>
    <DropDown>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </DropDown>
    <DropDown>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </DropDown>
  </ListClassPlan>
  <ListFeeTerm>
    <DropDown>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </DropDown>
    <DropDown>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </DropDown>
  </ListFeeTerm>
  <ListSchool>
    <SchoolInfo>
      <EncryptId>sample string 2</EncryptId>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <StudentCount>1</StudentCount>
    </SchoolInfo>
    <SchoolInfo>
      <EncryptId>sample string 2</EncryptId>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <StudentCount>1</StudentCount>
    </SchoolInfo>
  </ListSchool>
  <NotClearedCheckAmount>1</NotClearedCheckAmount>
  <PreviousSessionStudent>1</PreviousSessionStudent>
  <ReceivableStudent>1</ReceivableStudent>
  <ReceivedStudent>1</ReceivedStudent>
  <TotalStrength>1</TotalStrength>
  <TotalStudents>1</TotalStudents>
</DashboardInfo>