Skip to content

Instantly share code, notes, and snippets.

@tocohara
Created July 30, 2020 01:16
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/47a0740e75c6d348d1517f51409b958b to your computer and use it in GitHub Desktop.
Save tocohara/47a0740e75c6d348d1517f51409b958b to your computer and use it in GitHub Desktop.
Create Shipment Line Allocations in Acumatica
PUT /entity/ExtendedDefault/18.200.001/Shipment HTTP/1.1
Host: YourERPInstance
Content-Type: application/json
{
"ShipmentNbr" : {"value" : "0000032" } ,
"Details": [
{
"LineNbr" : {"value" : "1" } ,
"Allocations": [
{
"InventoryID": {
"value": "TW-B"
},
"LocationID": {
"value": "DRY01"
},
"LotSerialNbr": {
"value": "b600P0001"
},
"Qty": {
"value": 1
},
"UOM": {
"value": "GRAM"
}
},
{
"InventoryID": {
"value": "TW-B"
},
"LocationID": {
"value": "DRY01"
},
"LotSerialNbr": {
"value": "b600P0002"
},
"Qty": {
"value": 1
},
"UOM": {
"value": "GRAM"
}
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment