Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Get all permissions for a user

Description

The GetPermissions() method is used to get all permissions for a specific user.

Package Details

Interface

IUserManager

Syntax

await _userManager.GetPermissions(int userId)

Returns

Task<ICollection<UserServicePermissionInfo>>

API

GET
/api/v1/users/{id}/permissions

Parameters

Parameter

Description

Parameter Type

id

The user Id to search for

Path

Returns

If the user is found, 200 Ok

On error, 400 Bad Request

On authorization error, 403 Forbidden

Example

int userId = 1;
var userPermissions = await _userManager.GetPermissions(userId);

 

  • No labels