- I retreive a list of shipment numbers that i need to confirm in Acumatica
- I created an import scenario that accepts a csv file with “Shipment Nbr.” as the header.
- I created a web service endpoint mapped to Import By Scenario Screen
- I created an action called prepareImport
- The action has a parameter called Name which is the Import Scenario name
- Is it possible to send a list of shipment numbers in JSON format instead of csv through postman?
- What would the payload look like?
- Ive tried:
-
{
"entity" : {
"ShipmentNbr" : {"value": "SHIP-0000002"}
}
}
-
{
"entity": {
"Name": { "value": "LA - Confirm Shipments" },
"parameters": {
"Shipment Nbr.": {
"value": "SHIP-0000003"
}
}
}
}
-
- Ive tried:
-
Ive tried changing the url to pass the Name as a filter
- What would the payload look like?
How can I acheive this? Thank you.