GET api/DashboardCRM?FinancialYearId={FinancialYearId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FinancialYearId

integer

Required

Body Parameters

None.

Response Information

Resource Description

DashboardCRM
NameDescriptionTypeAdditional information
TotalLeads

integer

None.

ConvertedToOrders

integer

None.

LeadsLost

integer

None.

LeadsActive

integer

None.

LeadsOnHold

integer

None.

LeadsInActive

integer

None.

MonthWiseLeads

Collection of ChartData

None.

MonthWiseOrders

Collection of ChartData

None.

ProjectWiseSalesOrderAmount

Collection of ChartData

None.

EmployeeWiseSalesOrderAmount

Collection of ChartData

None.

ZoneWiseSalesOrderAmount

Collection of ChartData

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalLeads": 1,
  "ConvertedToOrders": 2,
  "LeadsLost": 3,
  "LeadsActive": 4,
  "LeadsOnHold": 5,
  "LeadsInActive": 6,
  "MonthWiseLeads": [
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    },
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    }
  ],
  "MonthWiseOrders": [
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    },
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    }
  ],
  "ProjectWiseSalesOrderAmount": [
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    },
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    }
  ],
  "EmployeeWiseSalesOrderAmount": [
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    },
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    }
  ],
  "ZoneWiseSalesOrderAmount": [
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    },
    {
      "SlNo": 1,
      "Label": "sample string 2",
      "LabelValue": "sample string 3",
      "Colour": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<DashboardCRM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Morph.Web.Api.ViewModel">
  <ConvertedToOrders>2</ConvertedToOrders>
  <EmployeeWiseSalesOrderAmount>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
  </EmployeeWiseSalesOrderAmount>
  <LeadsActive>4</LeadsActive>
  <LeadsInActive>6</LeadsInActive>
  <LeadsLost>3</LeadsLost>
  <LeadsOnHold>5</LeadsOnHold>
  <MonthWiseLeads>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
  </MonthWiseLeads>
  <MonthWiseOrders>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
  </MonthWiseOrders>
  <ProjectWiseSalesOrderAmount>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
  </ProjectWiseSalesOrderAmount>
  <TotalLeads>1</TotalLeads>
  <ZoneWiseSalesOrderAmount>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
    <ChartData>
      <Colour>sample string 4</Colour>
      <Label>sample string 2</Label>
      <LabelValue>sample string 3</LabelValue>
      <SlNo>1</SlNo>
    </ChartData>
  </ZoneWiseSalesOrderAmount>
</DashboardCRM>