/
POST Manifest Update
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 Manifest Update
This call updates a manifest in Browntape.
- 1 V0.11 (recommended)
- 1.1 End Point
- 1.2 Parameters
- 1.3 Post Parameters
- 1.4 Response
- 1.4.1 When call succeeds and has a token
- 1.4.2 When user tries to update the manifest status as picked or shipped, before closed
- 1.4.3 When MP fulfillment manifest tries to update status as shipped
- 1.4.4 When Seller fulfilled manifest tries to update manifest as picked
- 1.4.5 When an error occurs in updating the manifest status
- 1.5 Manifest Status Reference
- 2 V0.1 (old)
- 2.1 End Point
- 2.2 Parameters to be passed
- 2.3 Post Parameters
- 2.4 Response
V0.11 (recommended)
End Point
https://app.browntape.com/0.11/manifests/update.json
Note: This is a version 0.11 endpoint
Parameters
?username =XXXXXXXXXX
&auth_string =YYYYYYYYY
Post Parameters
{
data: {
"manifest": {
"id": 48955 "status": "closed/picked/shipped"
}
}
}
Response
When call succeeds and has a token
{
"success": true,
"data": {
"token": [
{
"order_id": [
"843630872"
],
"token": "cf31a6da11e3fc91d86a08f8f138c2b7"
}
],
"manifest_status_id": 3
}
}
When user tries to update the manifest status as picked or shipped, before closed
{
"success": false,
"message": "Cannot update manifest status. Please do actions in sequence of Open->Closed->Picked/Shipped"
}
When MP fulfillment manifest tries to update status as shipped
{
"success": false,
"message": "Illegal status. Please check your manifests fulfillment status and then try to update manifest again."
}
When Seller fulfilled manifest tries to update manifest as picked
{
"success": false,
"message": "Illegal status. Please check your manifests fulfillment status and then try to update manifest again."
}
When an error occurs in updating the manifest status
{
"success": false,
"message": "Manifest status update failed. Please try again, if the problem persists contact support"
}
Manifest Status Reference
ID | Status | Description |
---|---|---|
1 | Open | New Manifest are in open State |
2 | Closed | Fetching Marketplace manifest will close the manifest. |
3 | Picked | The orders in the manifest will be picked up on Browntape. |
4 | Shipped | The orders in the manifest will be Shipped on Browntape. |
V0.1 (old)
End Point
https://app.browntape.com/0.1/manifests/update.json
Parameters to be passed
?username=XXXXXXXXXX
&auth_string=YYYYYYYYY
Post Parameters
{
data: {
"manifest": {
"id": 123 "status": "closed/picked"
}
}
}
Response
{
"success": true
}
Related content
POST Add Orders to Existing Manifest
POST Add Orders to Existing Manifest
More like this
POST Manifest Create AND Fetch Marketplace Manifest Document
POST Manifest Create AND Fetch Marketplace Manifest Document
More like this
POST Manifests Create
POST Manifests Create
More like this
POST Create Close And Download Manifest
POST Create Close And Download Manifest
More like this
POST Delete Manifest
POST Delete Manifest
More like this
POST Fetch Channel Manifests
POST Fetch Channel Manifests
More like this