Edit the Access Rules of a Custom Form Section (Parameter Group) via API | Community
Skip to main content
NicholasSily
Level 2
June 4, 2025
Solved

Edit the Access Rules of a Custom Form Section (Parameter Group) via API

  • June 4, 2025
  • 1 reply
  • 297 views

 

I can get the custom sections (Parameter Group) on a custom form (Category) with:

 

GET /attask/api/v15.0/ctgy/{customFormId}?fields=categoryParameters:parameterGroup

 

This gives me the Parameter Group ID, but I don't see any sharing/permission fields in the Parameter Group object fields list when I check the API Explorer.

The goals is to update the sharing permissions of all instances of a particular custom section across workfront to be admin only.

Best answer by SuryaLakhani

Hi, you should be able to update the "viewSecurity" & "editSecurity" for the parameter group to update access to the section. I think A is admins only. 

 

"{ParameterGroupID}": {
"elementType": "SECTION",
"security": {
"viewSecurity": "A",
"editSecurity": "A"
}

1 reply

SuryaLakhani
SuryaLakhaniAccepted solution
Level 4
June 4, 2025

Hi, you should be able to update the "viewSecurity" & "editSecurity" for the parameter group to update access to the section. I think A is admins only. 

 

"{ParameterGroupID}": {
"elementType": "SECTION",
"security": {
"viewSecurity": "A",
"editSecurity": "A"
}