I'm trying to update a record field from within an AngularJS which is hosted in an Iframe of a CRM2016.
I need to update a field on the connection entity. However I don't succeed.
I have no error but update is not done.
Unfortunately I'm not allowed to install new software, so I don't have fiddler or other to trace the traffic.
Below the code I use. My guess is I have a wrong parameter.
If someone can point me in the right direction, I'll be grateful.
var attr = JSON.stringify("{'fua_visibility' : 'true'}");
$http.patch(API_ROOT + + "connections(" + node.guidpk + ")", attr).then((answer) => {
alert('response');
});
*This post is locked for comments
I have the same question (0)