A.1 POST /api/util/permssort (sort a list of permissions by display name)

Sort the specified list of permissions by display name.

NOTE:This REST API does not require authentication.

Used In

Team compare view

URL Parameters

None

Data to Send

{
    "perms": [
        {
            "id": "cn=changepwd,cn=RequestDefs,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system",
            "name": "Change Password"
        },
        {
            "id": "cn=billing,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system",
            "name": "Billing Department Access" 
        }
    ]
}

Response payload for status code: 200 OK

{
    "perms": [
        {
            "id": "cn=billing,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system",
            "name": "Billing Department Access" 
        },
        {
            "id": "cn=changepwd,cn=RequestDefs,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system",
            "name": "Change Password"
        }
        
    ]
}