client.permission_sets.list_users_permissions
A method of the Permission Sets endpoint.
- list_users_permissions(id: int, user_id: int) ListResponse
Get all permissions for a user, in this permission set
API URL:
GET /permission_sets/{id}/users/{user_id}/permissionsimport civis client = civis.APIClient() response = client.permission_sets.list_users_permissions(...)
- Parameters:
- idint
The ID for this permission set.
- user_idint
The ID for the user.
- Returns:
civis.ListResponse- resource_namestr
The name of the resource.
- readbool
If true, the user has read permission on this resource.
- writebool
If true, the user has write permission on this resource.
- managebool
If true, the user has manage permission on this resource.