Discussions

Ask a Question
Back to all

How to Pack the Orders?

I am trying to pack the orders via the api.

  1. I fetched the orders using POST /orders/print method.
  2. All my invoices are generated by snapdeal so I didn't called the POST /orders/invoice method.
  3. I didn't need to update status to OOS or update imei so I skipped them.
  4. 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?