Return details
This php is used for getting the returned item details of a particular route.
URL
sales/route_returndetails
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 | jWa9H0cSR24yvASXQ1NFHa6A0CX4TfyN | Key obtained from authentiaction. |
Response Values
Name | Data Type | Min Length | Max Length | M/O | Sample Value | Comments |
---|---|---|---|---|---|---|
details | Array | M | Return details | |||
customer | String | 1 | 55 | M | ABC | Customer name |
product | String | 1 | 100 | M | CHAPATHI | Name of the product. |
qty | Decimal | 1 | M | 8.00 | Quantity. | |
expdate | String | M | 14/01/2021 | Expiry date in dd/MM/yyyy format. |
Sample Request
{
"key": "QH7LlQ3wQMK9oYEKjeG5QOIVJQT4emeq"
}
Sample Success Response
{
"details": [
{
"customer": "ABC",
"product": "CHAPATHI",
"qty": "8.00",
"expdate": "14/01/2021"
}
],
"e": 200,
"msg": "Success"
}