Hello
I’m trying to submit create purchase orders screen Id: PO505000
the bellow images are my endpoints structure
Top-Level from CreatePurchaseOrders endpoint, screen id PO505000
and Details from Details, in order to be able to submit multiple data at a time
and the action is Process
![](https://uploads-us-west-2.insided.com/acumatica-en/attachment/27b1aec0-a1da-4979-91ce-aa46fc2f84c4.png)
![](https://uploads-us-west-2.insided.com/acumatica-en/attachment/0c4ae6e6-3699-4812-8233-feb6668e8f48.png)
![](https://uploads-us-west-2.insided.com/acumatica-en/attachment/77fecc1f-8444-4a1c-967b-a7b7a4c37419.png)
![](https://uploads-us-west-2.insided.com/acumatica-en/attachment/0a667d3c-22a7-41cb-b20a-1175b0a72edb.png)
![](https://uploads-us-west-2.insided.com/acumatica-en/attachment/4b4db702-0b31-450c-a5a3-227ff26b5d39.png)
![](https://uploads-us-west-2.insided.com/acumatica-en/attachment/ee5794c1-ee6f-4016-9efc-7338250f262a.png)
![](https://uploads-us-west-2.insided.com/acumatica-en/attachment/2afca859-6d96-4751-ab8b-57da2869bf66.png)
this is my url: https://{baseUrl}/entity/GTPDefault3/20.200.001.001/CreatePurchaseOrders/process
while submit it with POST request it return 202 accept message,
this is my json code:
{
"entity": {
"VendorId": {"value": "V10106"},
"VendorName": {"value": "ABC"},
"Location": {"value":"05"},
"LocationId": {"value":"05"},
"VendorRef": {"value":"09078987"},
"CreationDate" : { "value" : "05/20/2024"}
},
"Details":}
{
"LineNbr" : {"value" : 2},
"Selected" : {"value" : true},
"OrderNbr": {"value": "Code-000395924"},
"InventoryId": {"value":"1MM650WHT-S"},
"OrderQty": {"value": 1.00},
"UnitCost": {"value": 20.00 },
"VendorId": {"value": "V10106"},
"Location": {"value":"05"}
}
]}
in this submission it submit a different data, for example it will submit "OrderNbr": {"value": "Code-000395926"}, instead of the order number that i gave him
Thank you for your help