/
Flipkart Sample - Packaging In Progress - Dimensions Issues

Flipkart Sample - Packaging In Progress - Dimensions Issues

POST API:

https://api.flipkart.net/sellers/v3/shipments/labels

Request Body:

{ "shipments": [ { "taxItems": [ { "taxRate": 18, "quantity": 1, "orderItemId": "22611220609085500" }, { "taxRate": 5, "quantity": 1, "orderItemId": "22611220609085501" } ], "invoices": [ { "orderId": "OD226112206090855000", "invoiceDate": "2022-09-29" } ], "locationId": "LOCc9fd2ceab35042819274d20b0012d80c", "shipmentId": "ae93c435-1dc6-452b-ad93-a6edb9e7a68b", "subShipments": [ { "subShipmentId": "SS-1", "dimensions": { "breadth": 6.2, "length": 21.5, "weight": 0.478, "height": 9.2 } } ] } ] }

Response:

{ "shipments": [ { "shipmentId": "ae93c435-1dc6-452b-ad93-a6edb9e7a68b", "status": "FAILURE", "errorCode": "DEPENDENT_SYSTEM_CALL_FAILED", "errorMessage": "A call to dependent system failed. Please retry after some time" } ] }

Now If I try to mark it Packaging in Progress by using dimensions 40X40x40 and weight 1 KG still it gives the error:

Note: The dimensions that we are passing above 40X40X40 and 1 KG works for every brand but it doesn’t work for Brillare.

Request Body:

{ "shipments": [ { "taxItems": [ { "taxRate": 18, "quantity": 1, "orderItemId": "22611220609085500" }, { "taxRate": 5, "quantity": 1, "orderItemId": "22611220609085501" } ], "invoices": [ { "orderId": "OD226112206090855000", "invoiceDate": "2022-09-29" } ], "locationId": "LOCc9fd2ceab35042819274d20b0012d80c", "shipmentId": "ae93c435-1dc6-452b-ad93-a6edb9e7a68b", "subShipments": [ { "subShipmentId": "SS-1", "dimensions": { "breadth": "40", "length": "40", "weight": "1", "height": "40" } } ] } ] }

Response:

{ "shipments": [ { "shipmentId": "ae93c435-1dc6-452b-ad93-a6edb9e7a68b", "status": "FAILURE", "errorCode": "DEPENDENT_SYSTEM_CALL_FAILED", "errorMessage": "A call to dependent system failed. Please retry after some time" } ] }

 

Now If I try to send a weight of 3 KG, it still gives the error:

Request Body:

{ "shipments": [ { "taxItems": [ { "taxRate": 18, "quantity": 1, "orderItemId": "22611220609085500" }, { "taxRate": 5, "quantity": 1, "orderItemId": "22611220609085501" } ], "invoices": [ { "orderId": "OD226112206090855000", "invoiceDate": "2022-09-29" } ], "locationId": "LOCc9fd2ceab35042819274d20b0012d80c", "shipmentId": "ae93c435-1dc6-452b-ad93-a6edb9e7a68b", "subShipments": [ { "subShipmentId": "SS-1", "dimensions": { "breadth": 6.2, "length": 21.5, "weight": 3, "height": 9.2 } } ] } ] }

Response:

{ "shipments": [ { "shipmentId": "ae93c435-1dc6-452b-ad93-a6edb9e7a68b", "status": "FAILURE", "errorCode": "DEPENDENT_SYSTEM_CALL_FAILED", "errorMessage": "A call to dependent system failed. Please retry after some time" } ] }

Now, If I use 40X40X40 and 3 Kg, then it gets fixed immediately:

Request Body:

{ "shipments": [ { "taxItems": [ { "taxRate": 18, "quantity": 1, "orderItemId": "22611220609085500" }, { "taxRate": 5, "quantity": 1, "orderItemId": "22611220609085501" } ], "invoices": [ { "orderId": "OD226112206090855000", "invoiceDate": "2022-09-29" } ], "locationId": "LOCc9fd2ceab35042819274d20b0012d80c", "shipmentId": "ae93c435-1dc6-452b-ad93-a6edb9e7a68b", "subShipments": [ { "subShipmentId": "SS-1", "dimensions": { "breadth": 40, "length": 40, "weight": 3, "height": 40 } } ] } ] }

Response:

{ "shipments": [ { "shipmentId": "ae93c435-1dc6-452b-ad93-a6edb9e7a68b", "status": "SUCCESS" } ] }

Related content