GET api/DashboardInventory?FinYearId={FinYearId}&BranchId={BranchId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FinYearId

integer

Required

BranchId

integer

Required

Body Parameters

None.

Response Information

Resource Description

InventoryDashboard
NameDescriptionTypeAdditional information
OBStockValue

decimal number

None.

InwardStockValue

decimal number

None.

OutwardStockValue

decimal number

None.

ClosingStockValue

decimal number

None.

NoOfStockItems

integer

None.

ZeroStockItems

integer

None.

NonMovingStockItems

integer

None.

ROLItems

integer

None.

BranchId

integer

None.

FinancialYear

integer

None.

MonthWiseInwardAmount

Collection of ChartData

None.

MonthWiseInwardNo

Collection of ChartData

None.

MonthWiseOutwardAmount

Collection of ChartData

None.

MonthWiseOutwardNo

Collection of ChartData

None.

Response Formats

application/json, text/json

Sample:
{
  "OBStockValue": 1.1,
  "InwardStockValue": 2.1,
  "OutwardStockValue": 3.1,
  "ClosingStockValue": 4.1,
  "NoOfStockItems": 5,
  "ZeroStockItems": 6,
  "NonMovingStockItems": 7,
  "ROLItems": 8,
  "BranchId": 9,
  "FinancialYear": 10,
  "MonthWiseInwardAmount": [
    {
      "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"
    }
  ],
  "MonthWiseInwardNo": [
    {
      "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"
    }
  ],
  "MonthWiseOutwardAmount": [
    {
      "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"
    }
  ],
  "MonthWiseOutwardNo": [
    {
      "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:
<InventoryDashboard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Web.Api.ViewModel">
  <BranchId>9</BranchId>
  <ClosingStockValue>4.1</ClosingStockValue>
  <FinancialYear>10</FinancialYear>
  <InwardStockValue>2.1</InwardStockValue>
  <MonthWiseInwardAmount>
    <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>
  </MonthWiseInwardAmount>
  <MonthWiseInwardNo>
    <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>
  </MonthWiseInwardNo>
  <MonthWiseOutwardAmount>
    <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>
  </MonthWiseOutwardAmount>
  <MonthWiseOutwardNo>
    <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>
  </MonthWiseOutwardNo>
  <NoOfStockItems>5</NoOfStockItems>
  <NonMovingStockItems>7</NonMovingStockItems>
  <OBStockValue>1.1</OBStockValue>
  <OutwardStockValue>3.1</OutwardStockValue>
  <ROLItems>8</ROLItems>
  <ZeroStockItems>6</ZeroStockItems>
</InventoryDashboard>