Skip to main content
Question

REST API Move Entry Date

  • May 28, 2026
  • 0 replies
  • 3 views

We’re having an issue where Acumatica 2025R2 is not respecting the dates that we are sending through the API (MANUFACTURING/23.200.001) when creating Move Entries.  It seems to always default to the system date.  Here is the JSON we’re sending and the date is 2026-06-01 but the resultant Move Entry in the web interface shows today’s date.  Any thoughts or suggestions?

{

"Document" : {

"Date" : {

"value" : "2026-06-01T00:00:00+00:00"

},

"ProductionNbr" : {

"value" : "00137227"

},

"Hold" : {

"value" : false

},

"ControlQty" : {

"value" : 8

},

"OrderType" : {

"value" : "RO"

},

"PostPeriod": {

"value": "062026"

}

},

"Details" : [

{

"Quantity" : {

"value" : 8

},

"ProductionNbr" : {

"value" : "00137227"

},

"UOM" : {

"value" : "EA"

},

"OrderType" : {

"value" : "RO"

},

"OperationNbr" : {

"value" : "0010"

},

"InventoryID" : {

"value" : "301238"

}

}

]

}