Thursday, March 17, 2022

ODATA Request URL D365FO - Testing postman

 POST:

https://<D365FOURL>/data/<EntityPublicCollectionName>

Body:

{
    "dataAreaId""USMF",
    "InvoiceId""USMF00000040",
    "InvoiceAmount"13110.540000,
    "Status""Sent"
}

PATCH:
https://<D365FOURL>/data/<EntityPublicCollectionName>(dataAreaId='USMF',InvoiceId='USMF00000040')?cross-company=true

Body:
{
    "Status""Paid"
}

No comments:

Post a Comment

Copy Markup charges while posting purchase invoice using X++

 Copy Markup charges while posting purchase invoice using X++ Class: Important: Code logic is just for Reference.  New class => Duplicate...