POST api/v1/ItemwiseSale
Request Information
URI Parameters
None.
Body Parameters
ItemwiseSaleInput| Name | Description | Type | Additional information |
|---|---|---|---|
| LocID | integer |
None. |
|
| CompID | integer |
None. |
|
| UserID | integer |
None. |
|
| ToLocID | integer |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| TaxonomyID | integer |
None. |
|
| LicenseNo | string |
None. |
|
| ProdID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocID": 1,
"CompID": 2,
"UserID": 3,
"ToLocID": 4,
"StartDate": "2025-12-15T03:22:46.4949596+05:30",
"EndDate": "2025-12-15T03:22:46.4949596+05:30",
"TaxonomyID": 5,
"LicenseNo": "sample string 6",
"ProdID": 7
}
application/xml, text/xml
Sample:
<ItemwiseSaleInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CompID>2</CompID> <EndDate>2025-12-15T03:22:46.4949596+05:30</EndDate> <LicenseNo>sample string 6</LicenseNo> <LocID>1</LocID> <ProdID>7</ProdID> <StartDate>2025-12-15T03:22:46.4949596+05:30</StartDate> <TaxonomyID>5</TaxonomyID> <ToLocID>4</ToLocID> <UserID>3</UserID> </ItemwiseSaleInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |