Error :Error 403: ForbiddenCRRRS8658E The server cannot validate the User attribute with the value. When trying to update attributes through a script
![]()
I am trying to update values of particular attributes using a script. Each time I run my script I get an error, " response: Object, status: 403, responseText: "Error 403: Forbidden Error 403: Forbidden CRRRS8658E The server cannot validate the User attribute with the value.
Requirements Management/5.0</i></p></body></html>", xhr: XMLHttpRequest, log: false, ioArgs: Object, correlationData: undefined } This is my code: var attributeValues = []; result.data.forEach(function (aa /* Artifact Attributes */){ for( var prop in aa.values){ aa.values['Verified Waiver Count'] = waiverCount; toSave.push(aa) }); RM.Data.setAttributes(toSave, function(result){ if(result.code !== RM.OperationResult.OPERATION_OK) { console.log("could not be saved"); } }); I can see that the waiverCount gets calculated through the web console. Each time I run it I get "could not be saved". I'm not sure if it's my code, or server, or permissions that causes the errors. |