# Get contract users Returns the users that are assigned to the contract Endpoint: GET /v1/contracts/{contractId}/users Version: 1.0 ## Path parameters: - `contractId` (integer, required) The contract 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 contract users to returnDefault: 50 ## Response 200 fields (text/plain): - `data` (array,null) Represents a single page of processed data. - `data.userId` (string,null) - `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) - `total` (integer) The total number of records available.