GET Api/JobCardReport/GetMonthWiseData/{FinYearId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FinYearId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MonthWiseProductionData
NameDescriptionTypeAdditional information
SlNo

integer

None.

Month

string

None.

ProductionQty

decimal number

None.

RejectedQty

decimal number

None.

AcceptedQty

decimal number

None.

ReworkQty

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SlNo": 1,
    "Month": "sample string 2",
    "ProductionQty": 3.1,
    "RejectedQty": 4.1,
    "AcceptedQty": 5.1,
    "ReworkQty": 6.1
  },
  {
    "SlNo": 1,
    "Month": "sample string 2",
    "ProductionQty": 3.1,
    "RejectedQty": 4.1,
    "AcceptedQty": 5.1,
    "ReworkQty": 6.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfMonthWiseProductionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Web.Api.ViewModel">
  <MonthWiseProductionData>
    <AcceptedQty>5.1</AcceptedQty>
    <Month>sample string 2</Month>
    <ProductionQty>3.1</ProductionQty>
    <RejectedQty>4.1</RejectedQty>
    <ReworkQty>6.1</ReworkQty>
    <SlNo>1</SlNo>
  </MonthWiseProductionData>
  <MonthWiseProductionData>
    <AcceptedQty>5.1</AcceptedQty>
    <Month>sample string 2</Month>
    <ProductionQty>3.1</ProductionQty>
    <RejectedQty>4.1</RejectedQty>
    <ReworkQty>6.1</ReworkQty>
    <SlNo>1</SlNo>
  </MonthWiseProductionData>
</ArrayOfMonthWiseProductionData>