POST api/inventory/report/tax
Request Information
URI Parameters
None.
Body Parameters
TaxReportRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchID | integer |
None. |
|
| FinancialYearID | integer |
None. |
|
| LedgerID | integer |
None. |
|
| VehicleID | integer |
None. |
|
| TaxCategoryID | integer |
None. |
|
| SalesAreaID | integer |
None. |
|
| EmployeeID | integer |
None. |
|
| ProductID | integer |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| InvoiceType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"BranchID": 1,
"FinancialYearID": 2,
"LedgerID": 3,
"VehicleID": 4,
"TaxCategoryID": 5,
"SalesAreaID": 6,
"EmployeeID": 7,
"ProductID": 8,
"FromDate": "2025-12-18T23:05:11.5791403-08:00",
"ToDate": "2025-12-18T23:05:11.5791403-08:00",
"InvoiceType": "sample string 11"
}
application/xml, text/xml
Sample:
<TaxReportRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrushMateBackendAPI.Controllers"> <BranchID>1</BranchID> <EmployeeID>7</EmployeeID> <FinancialYearID>2</FinancialYearID> <FromDate>2025-12-18T23:05:11.5791403-08:00</FromDate> <InvoiceType>sample string 11</InvoiceType> <LedgerID>3</LedgerID> <ProductID>8</ProductID> <SalesAreaID>6</SalesAreaID> <TaxCategoryID>5</TaxCategoryID> <ToDate>2025-12-18T23:05:11.5791403-08:00</ToDate> <VehicleID>4</VehicleID> </TaxReportRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.