Route Products Return
Product Details for Return.
URL
sales/route_products_return
Method
POST
Request Media type
application/json
Response Media type
application/json
Request Parameters
Parameter | Data Type | Min | Max | M/O | Sample Value | Comments |
---|---|---|---|---|---|---|
key | String | 32 | 32 | M | 5IaNuS0o9WKYEOygzhTUybFMAJ9T1Yda | Key obtained from authentiaction. |
Response Values
Name | Data Type | Min Length | Max Length | M/O | Sample Value | Comments |
---|---|---|---|---|---|---|
products | Array | M | Product list from the Product Master | |||
itemcode | Integer | 1 | 9999 | M | 185 | Itemcode of products |
itemname | String | 1 | 150 | M | CHAPATHI COOKED -MRP-8 | Name of Product |
hsncode | String | 35 | M | 10001000 | Hsncode of Product | |
taxpercentage | Decimal | M | Tax percentage of product |
Sample Request
{
"key": "QH7LlQ3wQMK9oYEKjeG5QOIVJQT4emeq"
}
Sample Success Response
{
"products": [
{
"itemcode": "185",
"itemname": "CHAPATHI COOKED -MRP-8",
"hsncode": "10001000",
"taxpercentage": ""
}
],
"e": 200,
"msg": "Success"
}
Sample Failure Responses
{
"e": 400,
"msg": "Bad Request."
}