Expand my Community achievements bar.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.
SOLVED

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

Avatar

Level 2

 

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.

1 Accepted Solution

Avatar

Correct answer by
Level 4

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"
}

View solution in original post

1 Reply

Avatar

Correct answer by
Level 4

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"
}