Administrator list

Hi team,

How can we get the list of system administrators on Appian. Is there a group to get this list.

The users that are part of "Designer", is only admins?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer

    In the designers Groups systems admins are added directly when you create an account in appian. 

    In designers group basic users can also be there . They don't have the admin access but they can access the o applications with necessary permissions in the application.

    Below code will help you to get the list of admin users. 

    a!localVariables(
      local!users: getallusers(0,-1),
      reject(fn!isnull,a!forEach(
        items: local!users,
        expression: if(
          user(fv!item,"userTypeName")="Administrator",
          fv!item,
          null()
        )
      ))
    )

Reply
  • 0
    Certified Associate Developer

    In the designers Groups systems admins are added directly when you create an account in appian. 

    In designers group basic users can also be there . They don't have the admin access but they can access the o applications with necessary permissions in the application.

    Below code will help you to get the list of admin users. 

    a!localVariables(
      local!users: getallusers(0,-1),
      reject(fn!isnull,a!forEach(
        items: local!users,
        expression: if(
          user(fv!item,"userTypeName")="Administrator",
          fv!item,
          null()
        )
      ))
    )

Children
No Data