Shipment Confirm
URI Summary
POST /stores/{storeId}/fulfillmentOrders/{fulfillmentOrderId}/shipmentConfirm
Request Parameters
Parameter Type |
Name |
Description |
Required |
Definition |
Example |
---|---|---|---|---|---|
Path |
storeId |
The store identifier |
yes |
String |
TMSUS |
Path |
fulfillmentOrderId |
Unique number associated with Fulfillment Order |
yes |
String |
100051718744001 |
Request Payload Definition
Element |
Required |
Description |
---|---|---|
storeId |
yes |
The seller organization at which fulfillment order belongs. |
nodeId |
yes |
Fulfillment Order Ship Node |
fulfillmentOrderId |
yes |
Unique number associated with Fulfillment Order |
modifyAssociatedId |
yes |
The associate handling the ship confirm |
carrier |
yes |
The carrier portion of the SCAC. Values will vary per client. |
service |
yes |
The service portion of the SCAC. Values will vary per client. |
packages[{ |
yes |
Packages for this fulfillment order |
packageId |
yes |
The identifier assigned at pack time |
trackingNumber |
yes |
Returned from shipper |
Request Payload Example
{
"storeId": "TMS_US",
"nodeId": "TMS_NA-DC001",
"fulfillmentOrderId": "25255225581001",
"modifyAssociateId": "associate_id",
"carrier": "ANY",
"service": "2DAY",
"packages": [
{
"packageId": "containerId1",
"trackingNumber": "100047839154001998"
},
{
"packageId": "containerId2",
"trackingNumber": "100047839154001999"
}
]
}
Responses
Http Status Code |
Description |
---|---|
204 |
Success, no content |
400 |
Bad Request |
500 |
Internal Server Error |