ContributionsMost RecentMost LikesSolutionsRe: JSON API command to update Participant custom fields "Note, that you need to be logged in under the user to be able to modify their participant custom field value." So are you not able to automate each participants Discipline when adding them to a review? You can only modify the logged in user? Is there not a way to pass the user ID as an argument whose Discipline field you want to modify? Why would it default the update to the logged in user? Re: JSON API command to update Participant custom fields Six months later and no answer? Re: JSON API command to update Participant custom fields That assigns the roles, not the custom field in my template Re: JSON API command to update Participant custom fields anybody work here? Re: JSON API command to update Participant custom fields anybody? Re: JSON API command to update Participant custom fields Mods/Smartbear employees? Anybody able to provide an answer? Support would be appreciated. Re: JSON API command to update Participant custom fields anybody work here? JSON API command to update Participant custom fields Is there is a way to automate assigning in my case different disciplines (quality, safety, test, etc.) for participants for a single review? I have my JSON API commands working to create a review and add a list of participants to the review, but I'm looking to also automate adding their disciplines. Example below of the discipline filed i would like to update Re: JSON API not working to update reviewers "reviewID" needs to be declared before assignment. SmartBear, you probably want to update your documentation. I lost about four hours on this. Corrected example below. [ {"command" : "SessionService.authenticate", "args":{"login":"jsmith","ticket":"0123456789abcdef0123456789abcdef"}}, {"command" : "ReviewService.updateAssignments", "args":{ "reviewId":"10463", "assignments": [ {"user":"jsmith", "role":"AUTHOR"}, {"user":"mike", "role":"REVIEWER"}, {"poolGuid":"1234567890", "role":"OBSERVER"} ]} } ] JSON API not working to update reviewers Working off the following example, I am getting "Unexpected character (':' (code 58)): was expecting comma to separate Array entries" and it is giving me the reference to the colon character after the user ID. Can someone help? This error is being thrown for an example that is a direct copy and paste from the collaborator documentation. https://support.smartbear.com/collaborator/docs/custom-integrations/json-api/examples/manage-reviews.html Solved