Users and Security Group(s) REST Endpoints
Users and Security Group(s)
Users and Security Group(s)
- Create one or more security groups
- Method: postPath:
/PASService/rest/services/v1/securityGroups
- Create user
- Method: postPath:
/PASService/rest/services/v1/users
- Delete a specific security group by security group name
- Method: deletePath:
/PASService/rest/services/v1/securityGroups/{securityGroupName}
- Delete a specific security group for a user by login name and security group name
- Method: deletePath:
/PASService/rest/services/v1/users/{loginName}/securityGroups/{securityGroupName}
- Delete a specific user by login name
- Method: deletePath:
/PASService/rest/services/v1/users/{loginName}
- Delete all the security groups for a specific user by login name
- Method: deletePath:
/PASService/rest/services/v1/users/{loginName}/securityGroups
- Get a specific security group by security group name
- Method: getPath:
/PASService/rest/services/v1/securityGroups/{securityGroupName}
- Get a specific user by login name
- Method: getPath:
/PASService/rest/services/v1/users/{loginName}
- Get all security groups
- Method: getPath:
/PASService/rest/services/v1/securityGroups
- Get all users
- Method: getPath:
/PASService/rest/services/v1/users
- Get list of security groups for a specific user by login name
- Method: getPath:
/PASService/rest/services/v1/users/{loginName}/securityGroups
- Get list of users for a specific security group by security group name
- Method: getPath:
/PASService/rest/services/v1/securityGroups/{securityGroupName}/users
- Update a specific user by login name
- Method: putPath:
/PASService/rest/services/v1/users/{loginName}