/
POST Manifests Create
We’re excited to announce that the latest information is now available on our new site, the Ginesys One Wiki!. Visit the site for up-to-date resources and insights. We look forward to continuing to support you there!
We’re excited to announce that the latest information is now available on our new site, the Ginesys One Wiki!. Visit the site for up-to-date resources and insights. We look forward to continuing to support you there!
POST Manifests Create
- 1 V0.11 (recommended)
- 1.1 End Point
- 1.2 Parameters
- 1.3 Post Parameters
- 1.4 Response
- 2 V0.1 (old)
- 2.1 End Point
- 2.2 Parameters to be passed
- 2.3 Post Parameters
- 2.4 Response
V0.11 (recommended)
This call will create manifest(s) in Browntape. The orders will be split into different manifests based on the Channel, Warehouse, Order type i.e. self fulfilled, oneship, easyship etc. and Courier.
End Point
https://app.browntape.com/0.11/manifests/add.json
Note: This is a version 0.11 endpoint
Parameters
?username=XXXXXXXXXX
&auth_string=YYYYYYYYY
Post Parameters
{
"orders": [
"843654363",
"3807104",
"3809924",
"3779341",
"133044674",
"133044666"
](browntape order ids)
}
Response
{
"success": true,
"data": {
"manifests": [
{
"id": "48961",
"orders": [
"3809924"
],
"bt_manifest": "https://btesimages.s3.amazonaws.com/PdfManifestFiles/manifest-48961pdf",
"manifest_status_id": 1
},
{
"id": "48962",
"orders": [
"133044674"
],
"bt_manifest": "https://btesimages.s3.amazonaws.com/PdfManifestFiles/manifest-48962pdf",
"manifest_status_id": 1
}
]
},
"messages": [
{
"Order_id": "3779341",
"message": "Courier name/tracking number has not been set",
"status": "failed"
},
{
"Order_id": "3807104",
"message": "Courier name/tracking number has not been set",
"status": "failed"
},
{
"Order_id": "843654363",
"message": "Courier name/tracking number has not been set",
"status": "failed"
},
{
"Order_id": "133044666",
"message": "Order has already been manifested",
"status": "warning",
"Manifest_id": "48960",
"channel_manifest_pdf_path": null
}
]
}
V0.1 (old)
This is the old version, you are recommended to use the above-mentioned version of the endpoint.
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"
]
}
]
}
}
Related content
POST Add Orders to Existing Manifest
POST Add Orders to Existing Manifest
More like this
POST Create Close And Download Manifest
POST Create Close And Download Manifest
More like this
POST Manifest Create AND Fetch Marketplace Manifest Document
POST Manifest Create AND Fetch Marketplace Manifest Document
More like this
POST Fetch Channel Manifests
POST Fetch Channel Manifests
More like this
POST Orders Add
POST Orders Add
More like this
POST Manifest Update
POST Manifest Update
More like this