POST api/SmartTrade/promoterSales
Request Information
URI Parameters
None.
Body Parameters
AddStockSalesPrmName | Description | Type | Additional information |
---|---|---|---|
businessid | integer |
None. |
|
loginuserid | integer |
None. |
|
customerID | integer |
None. |
|
salesData | Collection of stockDataPrm |
None. |
|
flag | integer |
None. |
|
CustomerCreatedDate | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "businessid": 1, "loginuserid": 2, "customerID": 3, "salesData": [ { "Brand": "sample string 1", "ctn": 2, "pc": 3, "SKUCode": "sample string 4" }, { "Brand": "sample string 1", "ctn": 2, "pc": 3, "SKUCode": "sample string 4" } ], "flag": 4, "CustomerCreatedDate": "sample string 5" }
application/xml, text/xml
Sample:
<AddStockSalesPrm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model"> <CustomerCreatedDate>sample string 5</CustomerCreatedDate> <businessid>1</businessid> <customerID>3</customerID> <flag>4</flag> <loginuserid>2</loginuserid> <salesData> <stockDataPrm> <Brand>sample string 1</Brand> <SKUCode>sample string 4</SKUCode> <ctn>2</ctn> <pc>3</pc> </stockDataPrm> <stockDataPrm> <Brand>sample string 1</Brand> <SKUCode>sample string 4</SKUCode> <ctn>2</ctn> <pc>3</pc> </stockDataPrm> </salesData> </AddStockSalesPrm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
VCAPIResponseName | Description | Type | Additional information |
---|---|---|---|
Version | string |
None. |
|
dateTime | string |
None. |
|
StatusCode | integer |
None. |
|
ErrorMessage | string |
None. |
|
Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "Version": "1.0.0", "dateTime": "2025/04/04 07:09:29", "StatusCode": 1, "ErrorMessage": "sample string 2", "Result": {} }
application/xml, text/xml
Sample:
<VCAPIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model"> <ErrorMessage>sample string 2</ErrorMessage> <Result /> <StatusCode>1</StatusCode> </VCAPIResponse>