Hi,
We used a great deal of api calls for our dynamics365 business central solution. However I cannot find any way of returning the ids of records for updating.
The power automate methods for updating records require a guid/documentid, however there seems to be absolutely no way to expose this data.
When getting purchase orders by get api or creating a new purchase order by post api, the response brings back no ids, guids or anything to that description:
GET api.businesscentral.dynamics.com/.../Purchase_Order
would bring back:
"value": [
{
"@odata.etag": "etag....",
"Document_Type": "Order",
"No": "00000",
"Buy_from_Vendor_No": "V00000",
"Buy_from_Vendor_Name": "Name",
.........
}....]
Any ideas on how to expose the id's of records? It seems quite ludicrous that even the power automate business central features don't have any way of doing this either!
I need to get this value to create purchase order lines, it's a required field which is seemingly impossible to get dynamically.