Skip to content

Instantly share code, notes, and snippets.

@tocohara
Created July 30, 2020 01:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tocohara/e2e3a7192c512f2bc9761a68592c5140 to your computer and use it in GitHub Desktop.
Save tocohara/e2e3a7192c512f2bc9761a68592c5140 to your computer and use it in GitHub Desktop.
Create Shipment Packages in Acumatica
PUT /entity/Tote/18.200.001/Shipment?$filter=ShipmentNbr eq '0000032'&$expand=Packages HTTP/1.1
Host: YourERPInstance
Content-Type: application/json
{
"Packages":[
{
"BoxID": {"value":"PALLET"},
"Confirmed": {"value":"true"},
"Description": {"value":"Not So Big"},
"Weight": {"value":"0.0"},
"TrackingNbr": {"value":"ABC123"},
"CustomRefNbr1": {"value":"987654"},
"CustomRefNbr2": {"value":"123456"}
},
{
"BoxID": {"value":"PALLET"},
"Confirmed": {"value":"true"},
"Description": {"value":"The Big Jose"},
"Weight": {"value":"0.0"},
"TrackingNbr": {"value":"ZYXWVU"},
"CustomRefNbr1": {"value":"4455AA"},
"CustomRefNbr2": {"value":"EGHKIUGG$"}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment