Get all Recall Items
This endpoint allows you to get details of all recall items based on the search and filters passed in the request, along with page and per page.
Last updated
Was this helpful?
Was this helpful?
curl --location -g --request GET 'https://{{workspace}}.myeshopbox.com/api/v1/recallItems?page=1&perPage=10&packedOnFrom=2024-01-09&packedOnTo=2024-01-31&inventoryType=sellable' \
--header 'Content-Type: application/json' \
--header 'proxyHost: Accountlug'curl --location -g --request GET 'https://{{workspace}}.myeshopbox.com/api/v1/recallItems?page=1&perPage=10&eshopboxOrderId=RTV/24-25/221883' \
--header 'Authorization: Bearer XXXX' \
--header 'Content-Type: application/json' \
--header 'proxyHost: Accountlug'{
"total": 1,
"perPage": 10,
"data": [
{
"eshopboxOrderId": "RTV/24-25/221883",
"customerOrderId": "ISO1231",
"invoiceNumber": "IN/232/090",
"invoiceUrl": "https://cdn.filestackcontent.com/DEDQB6nTMWOFrIrb",
"inventoryType": "Sellable",
"fromLocation": "xyz",
"toLocation": "123A",
"totalOrderedQty": 30,
"totalFulfillableQty": 26,
"totalUnfulfillableQty": 4,
"status": "PACKED",
"totalBoxNumber": 3,
"orderCreatedOn": "2024-01-12 13:19:00",
"orderPackedOn": "2024-01-18 12:39:00",
"boxDetails": [
{
"boxId": "100988",
"sku": "ProductTest1",
"esin": "T1YV73H0TCS",
"packedQty": 5,
"itemMrp": 30000.0,
"unitPrice": 10000.0,
"brandName": "DummyBrand",
"hsnCode": "6203490",
"batchTrackingEnabled": false,
"batchingInfo": {
"batchingMethod": null,
"shelfLife": null,
"thresholdPeriod": null,
"stopShipDate": "null"
}
},
{
"boxId": "100988",
"sku": "ProductTest1",
"esin": "T1YV73H0TCS",
"packedQty": 5,
"itemMrp": 30000.0,
"unitPrice": 10000.0,
"brandName": "DummyBrand",
"hsnCode": "6203490",
"batchTrackingEnabled": false,
"batchingInfo": {
"batchingMethod": null,
"shelfLife": null,
"thresholdPeriod": null,
"stopShipDate": "null"
}
},
{
"boxId": "100989",
"sku": "ProductTest1",
"esin": "T1YV73H0TCS",
"packedQty": 10,
"itemMrp": 30000.0,
"unitPrice": 10000.0,
"brandName": "DummyBrand",
"hsnCode": "6203490",
"batchTrackingEnabled": false,
"batchingInfo": {
"batchingMethod": null,
"shelfLife": null,
"thresholdPeriod": null,
"stopShipDate": "null"
}
},
{
"boxId": "100990",
"sku": "ProductTest1",
"esin": "T1YV73H0TCS",
"packedQty": 6,
"itemMrp": 30000.0,
"unitPrice": 10000.0,
"brandName": "DummyBrand",
"hsnCode": "6203490",
"batchTrackingEnabled": false,
"batchingInfo": {
"batchingMethod": null,
"shelfLife": null,
"thresholdPeriod": null,
"stopShipDate": "null"
}
}
]
}
]
}