POST api/v1/ProductList
Request Information
URI Parameters
None.
Body Parameters
ProductListInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| ProductID | integer |
None. |
|
| CategoryID | integer |
None. |
|
| ProductName | string |
None. |
|
| Barcode | string |
None. |
|
| TaxonomyID | integer |
None. |
|
| EffDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"ProductID": 2,
"CategoryID": 3,
"ProductName": "sample string 4",
"Barcode": "sample string 5",
"TaxonomyID": 6,
"EffDate": "2025-12-15T03:19:33.0288763+05:30"
}
application/xml, text/xml
Sample:
<ProductListInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Barcode>sample string 5</Barcode> <CategoryID>3</CategoryID> <EffDate>2025-12-15T03:19:33.0288763+05:30</EffDate> <Mode>sample string 1</Mode> <ProductID>2</ProductID> <ProductName>sample string 4</ProductName> <TaxonomyID>6</TaxonomyID> </ProductListInput>
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. |