This call will create a manifest in Browntape . Orders with the same Courier, from the same Channel and with the same order type will be added to the same manifest.
End Point
https://app.browntape.com/0.1/manifests/add.json
Parameters to be passed
?username=XXXXXXXXXX &auth_string=YYYYYYYYY
Post Parameters
data: { "orders": [ "157710", "157712", "157713", "157720", "157718" ] //(browntape order ids) }
Response
{ "success": true, "message": [ "Order 157718 has already been manifested", "Order 157720 has already been manifested" ], "data": { "manifest": [ { "id": "57", "orders": [ "157710", "157712" ] }, { "id": "58", "orders": [ "157713" ] } ] } }