UpdateManifestStatus

Update a Manifest’s status.

Possible statuses are:

  • forward_received
  • returnreadyto_ship
  • return_shipped
  • return_received

Request example

{
  "Request": {
    "ManifestId": "MF123456789",
    "Status": "forward_received"
  }
}

Response

If the request is successful, Seller Center modifies the status of the Manifest. The updated status will be reflected in the call's response.

Success response

{
  "SuccessResponse": {
    "Head": {
      "RequestId": "",
      "RequestAction": "UpdateManifestStatus",
      "ResponseType": "",
      "Timestamp": "2015-07-02T12:26:03+0200"
    },
    "Body": {
      "UpdateManifestStatus": {
          "ManifestId": "MF123456789",
      		"Status": "forward_received"
      }
    }
}

Error response

{
  "ErrorResponse": {
    "Head": {
      "RequestAction": "UpdateManifestStatus",
      "ErrorType": "Sender",
      "ErrorCode": "0",
      "ErrorMessage": "Some elements were not processed."
    },
    "Body": {}
}