Get Reship Details
The Get Reship Details operation returns information for an existing reship request.
| Operation | Action | URI Template | URI Example | Transaction Type | Unique RequestID Needed for Duplicate Detection? | Non-URI Request Payload | 
|---|---|---|---|---|---|---|
| Get reshipment details | GET | vM.m/sellers/{sellerId}/orders/{orderId}/reshipInfo | /v1.0/stores/TMSUS/order-manage/orders/1234/reshipInfo.json | Return information for existing reship request. | No | Reship-Info-1.0.xsd | 
URI domain name: Radial recommends using the new domain at apg.radial.com. To connect to production Radial APIs, use the following form of the URL:
https://apg.radial.com/v1.0/proxyname/storecode/function
You should have received the applicable information for proxyname, storecode, and function from your Radial representative.
Note: The old domain will still be in operation until further notice from Radial. For more information on Radial API URIs, see API Requests and Responses.
Example
Request JSON
{
  "ReshipInfoRequest": {
    "SourceId": "TMSUS",
    "CustomerOrderId": 100001522055
  }
}Response JSON
{
  "ReshipInfoResponse": {
    "ReshipInfo": {
      "NoReturnRequiredItemCostThreshold": 10,
      "NoReturnRequiredCustomizedItemCostThreshold": 10,
      "ReshipAllowedWindow": 760,
      "ReturnGracePeriodAfterReship": 30,
      "OrderItems": {
        "OrderItem": {
          "ItemId": "21-000906345267",
          "OrderedQty": 5,
          "ReshipEligibility": {
            "IsInventoriedItem": true,
            "IsReshipAllowed": true,
            "ReshipDisallowedReason": "",
            "AvailableQuantityToReship": 5
          },
          "IsReturnRequired": true
        }
      }
    }
  }
}