Hi,
I have a WEB API that I am using a "PATCH". The API is working correctly. My problem that I am having is that I am getting a field permission error message.
The field that is throwing the error message is not the field that is getting updated by the user. The user has "Read" only permission on the field.
My question is why is the user having a permission issue.

var entity: any = {};
entity["new_issetupcompleted"] = isSetupCompleted;
let stringUrl = UrlQueryString.postTemplateUrl(StandardUtilityFunction.FormatGuid(templateId));
Crm.CrmPatchSingle(globalContext.getClientUrl() stringUrl, entity, (data, textStatus, xhr) => {
}