POST api/inventory/report/summary

Request Information

URI Parameters

None.

Body Parameters

SummaryReportRequestModel
NameDescriptionTypeAdditional information
BranchID

integer

None.

FinancialYearID

integer

None.

LedgerID

integer

None.

SalesAreaID

integer

None.

EmployeeID

integer

None.

VehicleID

integer

None.

PaymentModeID

integer

None.

VoucherType

string

None.

FromDate

date

None.

ToDate

date

None.

TaxCategoryID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "BranchID": 1,
  "FinancialYearID": 2,
  "LedgerID": 3,
  "SalesAreaID": 4,
  "EmployeeID": 5,
  "VehicleID": 6,
  "PaymentModeID": 7,
  "VoucherType": "sample string 8",
  "FromDate": "2025-12-18T23:02:56.5410204-08:00",
  "ToDate": "2025-12-18T23:02:56.5410204-08:00",
  "TaxCategoryID": "sample string 11"
}

application/xml, text/xml

Sample:
<SummaryReportRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrushMateBackendAPI.Controllers">
  <BranchID>1</BranchID>
  <EmployeeID>5</EmployeeID>
  <FinancialYearID>2</FinancialYearID>
  <FromDate>2025-12-18T23:02:56.5410204-08:00</FromDate>
  <LedgerID>3</LedgerID>
  <PaymentModeID>7</PaymentModeID>
  <SalesAreaID>4</SalesAreaID>
  <TaxCategoryID>sample string 11</TaxCategoryID>
  <ToDate>2025-12-18T23:02:56.5410204-08:00</ToDate>
  <VehicleID>6</VehicleID>
  <VoucherType>sample string 8</VoucherType>
</SummaryReportRequestModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SummaryReportRequestModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.