# Get paginated employee details

Returns a filtered and/or paginated list of basic employee details within the current account context.
            
Behavior:
- Applies filtering criteria from the request body
- Supports pagination using the start query parameter
- Retrieves essential employee information only
- Excludes extended profile or detailed data
- Returns summarised employee basic detail results
- Logs the action as an employee basic details list view event

Endpoint: POST /api/v1/portfolio/employees/basic/list

## Query parameters:

  - `start` (string)

## Request fields (application/json-patch+json):

  - `assigned` (boolean)

  - `unassigned` (boolean)

  - `levelId` (string,null)

  - `buildingId` (string,null)

  - `locationId` (string,null)

  - `employeeId` (string,null)

  - `roomId` (string,null)

  - `datafieldIds` (array,null)

  - `selectedIds` (array,null)

  - `siteIds` (array,null)

  - `buildingIds` (array,null)

  - `levelIds` (array,null)

  - `isEmployeeWithSpaceHandle` (boolean)

  - `status` (array,null)

  - `fieldValues` (array,null)

  - `fieldValues.dataFieldId` (string)

  - `fieldValues.dataFieldValue` (string,null)

  - `fieldValues.dataFieldlabel` (string,null)

  - `fieldValues.dataFieldValueIds` (array,null)

  - `fieldValues.fromDate` (string,null)

  - `fieldValues.toDate` (string,null)

  - `fieldValues.dataFieldValueRangeType` (string,null)

  - `isAdvancedSearch` (boolean,null)

  - `keyword` (string,null)

  - `sortColumn` (string,null)

  - `sortColumnId` (string,null)

  - `sortOrder` (string,null)

  - `filter` (string,null)

## Response 200 fields (text/plain):

  - `data` (object)

  - `data.employees` (array,null)

  - `data.employees.employeeId` (string)

  - `data.employees.employeeName` (string,null)

  - `data.employees.email` (string,null)

  - `data.employees.employeeCode` (string,null)

  - `data.employees.employeeRole` (string,null)

  - `data.employees.profilePic` (string,null)

  - `data.employees.isTechnician` (boolean)

  - `data.employees.isCreateUserAccount` (boolean)

  - `data.employees.isSupervisor` (boolean)

  - `data.employees.employeeUserId` (string,null)

  - `data.employees.status` (object)

  - `data.employees.status.statusId` (string)

  - `data.employees.status.statusCode` (string,null)

  - `data.employees.status.statusName` (string,null)

  - `data.employees.status.statusColor` (string,null)

  - `data.employees.locationInfo` (object)

  - `data.employees.locationInfo.location` (string,null)

  - `data.employees.locationInfo.locationId` (string,null)

  - `data.employees.locationInfo.building` (string,null)

  - `data.employees.locationInfo.buildingId` (string,null)

  - `data.employees.locationInfo.level` (string,null)

  - `data.employees.locationInfo.levelId` (string,null)

  - `data.employees.locationInfo.room` (string,null)

  - `data.employees.locationInfo.roomId` (string,null)

  - `data.employees.locationInfo.workspace` (string,null)

  - `data.employees.locationInfo.workspaceId` (string,null)

  - `data.employees.locationInfo.spaceKey` (string,null)

  - `data.employees.locationInfo.spaceAssignedOn` (string,null)

  - `data.employees.locationInfo.spaceCategory` (object)

  - `data.employees.locationInfo.spaceCategory.spaceCategoryId` (string)

  - `data.employees.locationInfo.spaceCategory.spaceCategoryName` (string,null)

  - `data.employees.locationInfo.spaceCategory.spaceCategoryCode` (string,null)

  - `data.employees.locationInfo.roomFunction` (object)

  - `data.employees.locationInfo.roomFunction.roomFunctionId` (string)

  - `data.employees.locationInfo.roomFunction.roomFunctionName` (string,null)

  - `data.employees.locationInfo.spaceArea` (number,null)

  - `data.employees.locationInfo.levelPlanHandle` (string,null)

  - `data.employees.locationInfo.employeeLocationId` (string,null)

  - `data.employees.locationInfo.rollBackInfo` (object)

  - `data.employees.locationInfo.rollBackInfo.isRollBack` (boolean)

  - `data.employees.locationInfo.rollBackInfo.rollBackType` (string,null)

  - `data.employees.locationInfo.rollBackInfo.employeeLocationId` (string)

  - `data.employees.locationInfo.rollBackInfo.comments` (string,null)

  - `data.employees.locationInfo.levelPlanId` (string,null)

  - `data.employees.locationInfo.planFile` (object)

  - `data.employees.locationInfo.planFile.fileId` (string)

  - `data.employees.locationInfo.planFile.fileName` (string,null)

  - `data.employees.locationInfo.planFile.fileSize` (string,null)

  - `data.employees.locationInfo.planFile.currentRevisionNumber` (integer)

  - `data.employees.locationInfo.planFile.createdOn` (string,null)

  - `data.employees.locationInfo.planFile.fileSizeInBytes` (integer)

  - `data.employees.locationInfo.planFile.createdDate` (string)

  - `data.employees.locationInfo.planFile.createdBy` (string,null)

  - `data.employees.locationInfo.planFile.isLatest` (boolean)

  - `data.employees.locationInfo.cadPlanCoordinates` (array,null)

  - `data.employees.locationInfo.spaceAssignedOnDateTimeFormat` (string,null)

  - `data.employees.locationInfo.svgPlanAdded` (boolean)

  - `data.listProperties` (object)

  - `data.listProperties.totalCount` (integer)

  - `data.listProperties.currentStart` (integer)

  - `data.listProperties.currentLength` (integer)

  - `data.listProperties.pageCount` (integer)

  - `message` (string,null)

  - `isError` (boolean)

  - `messageCode` (integer)

  - `status` (string,null)

  - `errorType` (string,null)

  - `traceid` (string,null)

  - `responseDescription` (string,null)


