Hi
I am building custom API (Odata) for updating budget lines for a project (Job). I created an API and able to POST few lines in respective table.
I would like to know if there is any specific API property to be used to enable PATCH in API code? Any one knows please? Thank you in advance
PageType = API;
Caption = 'manageProjectBudgetAPI';
APIPublisher = 'myapi';
APIGroup = 'apigrp';
APIVersion = 'v2.0';
EntityName = 'manageProjectBudgetAPI';
EntitySetName = 'manageProjectBudgetAPI';
SourceTable = "Budget Line";
InsertAllowed = true;
ModifyAllowed = true;
DeleteAllowed = false;
Extensible = false;
DelayedInsert = true;
ODataKeyFields = "SystemId";
Regards
Famy