# Get matter users Returns the users that are assigned to the matter Endpoint: GET /v1/matters/{matterId}/users Version: 1.0 ## Path parameters: - `matterId` (integer, required) The matter id ## Query parameters: - `skip` (integer) The number of results to skip - `filtering.field` (string) Field to filter by (optional) - `filtering.operator` (string) Operator used for filtering (optional) Enum: "eq", "neq", "lt", "lte", "gt", "gte", "startswith", "endswith", "contains", "doesnotcon", "isnull" - `filtering.value` (string) Value to filter by (optional) - `sorting.direction` (string) Set the sorting direction Enum: "asc", "desc" - `sorting.field` (string) Set the sorting fields - `take` (integer) The maximum number of matter users to returnDefault: 50 ## Response 200 fields (text/plain): - `data` (array,null) Represents a single page of processed data. - `data.userId` (string,null) ID of the user - `data.userFirstname` (string,null) - `data.userLastname` (string,null) - `data.userOrganisationId` (integer,null) - `data.userOrganisationName` (string,null) - `data.userHasPicture` (boolean) - `data.userPictureCacheId` (integer) - `data.userFullName` (string,null) - `data.userInitials` (string,null) - `data.permissions` (array,null) The permissions that the user has for the matter - `data.isDelegateOwner` (boolean) User has been assigned delegate owner - `data.isDelegateManager` (boolean) User is a delegate manager - `total` (integer) The total number of records available.