Discussions
How to Pack the Orders?
over 9 years ago by Manish Gupta
I am trying to pack the orders via the api.
- I fetched the orders using POST /orders/print method.
- All my invoices are generated by snapdeal so I didn't called the POST /orders/invoice method.
- I didn't need to update status to OOS or update imei so I skipped them.
- I tried to pack order using POST /orders/print method. It returned me a response but it didn't returned me a download link like the sample response in documentation.
My request body:
{'fulfillmentType': 'ONESHIP', 'orderCodes': ['SLP822350274']}
The response I got:
{u'metadata': {u'requestedURI': u'POST /orders/print', u'requestId': u'522893dc-c3cd-47e7-8ab7-e56dd947dae4', u'clientId': u'b1fc52'}}
It doesn't have that download link like the sample response.
What I am doing wrong?