Get multiple User Entities with link_id
Returns multiple User Entities with link_id with filter, sort and pagination options.
Query Parameters
- limit integer
Possible values: [
10,20,30,50]Number of items. Value by default is 10
 - page_number integer
Possible values:
>= 1Page number
 - sort_field string
Field name (JSON Key in item entity)
 - sort_type string
Possible values: [
asc,desc]Default value:
ascSort type (asc/desc)
 - filter object
Filtering options for Identifiers
 
- 200
 - 401
 - 403
 
OK
- application/json
 
- Schema
 - Example (from schema)
 - Example
 
Schema
list_option object
This model provides the options can be used to sort, filter and pagination when getting list of users
pagination object
Available pagination options for tables
total_items integerThe total number of items found and reflected across all pages
items_limit integerPossible values: [
10,20,30,50]Limiting the display of the amount of data for one page
total_pages integerThe number of pages that hold the requested data
current_page integerPossible values:
>= 1Current page number
filter object
Available filter sets for user
anyOf- MOD1
 - MOD2
 - MOD3
 
filter_field stringField available for filtering
filter_type stringPossible values: [
equal]Available filtering type, only equal here
filter_format stringData format, only string here
filter_value stringIdentifier name
filter_field stringField available for filtering
filter_type stringPossible values: [
equal]Available filtering type, only equal here
filter_format stringData format, only string here
filter_value stringIdentifier name
filter_field stringField available for filtering
filter_type stringPossible values: [
equal]Available filtering type, only equal here
filter_format stringData format, only string here
filter_value stringLink id
sort object
Available sorting options for the users table
field stringSorting field name
asc booleanSort direction
available_fields string[]Available for sorting fields names
- list_items object[]
User list
 
{
  "list_option": {
    "pagination": {
      "total_items": 18,
      "items_limit": 10,
      "total_pages": 2,
      "current_page": 1
    },
    "filter": {
      "filter_field": "name",
      "filter_type": "equal",
      "filter_format": "string",
      "filter_value": "Sherlock Holmes"
    },
    "sort": {
      "field": "name",
      "asc": true,
      "available_fields": [
        "John"
      ]
    }
  },
  "list_items": [
    {
      "link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
      "identifiers": {
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b5"
        ]
      },
      "apartments": {
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b5"
        ]
      },
      "timeprofiles": {
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b5"
        ]
      },
      "name": "John Doe",
      "item_uid": 1,
      "lock_number": 1,
      "is_custom_user_access": false,
      "auth_factors": [
        "card",
        "card",
        "card",
        "card"
      ],
      "info": "Employee"
    }
  ]
}
{
  "list_option": {
    "pagination": {
      "total_items": 18,
      "items_limit": 10,
      "total_pages": 2,
      "current_page": 1
    },
    "filter": {
      "filter_field": "name",
      "filter_type": "equal",
      "filter_format": "string",
      "filter_value": "Sherlock Holmes",
      "available_filtering": true,
      "available_fields": [
        "name",
        "info",
        "link_id"
      ],
      "is_filtered": true
    },
    "sort": {
      "field": "name",
      "asc": true,
      "available_fields": [
        "name"
      ]
    }
  },
  "list_items": [
    {
      "item_uid": 0,
      "name": "John Doe",
      "info": "Employee",
      "auth_factors": [
        "face_id",
        "card"
      ],
      "lock_number": 1,
      "is_custom_user_access": false,
      "apartments": {
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b1",
          "91c615e3-1040-4815-8ecb-039a18b756b2"
        ]
      },
      "identifiers": {
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b1",
          "91c615e3-1040-4815-8ecb-039a18b756b2"
        ]
      },
      "timeprofiles": {
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b1",
          "91c615e3-1040-4815-8ecb-039a18b756b2"
        ]
      },
      "link_id": "91c615e3-1040-4815-8ecb-039a18b756b1"
    }
  ]
}
Unauthorized request. Log In
- application/json
 
- Schema
 - Example (from schema)
 - Log In
 
Schema
- error string
Error message
 
{
  "error": "Log In"
}
{
  "error": "Log In"
}
Administrator rights required. You are currently logged in with different user account. Log In with administrator rights
- application/json
 
- Schema
 - Example (from schema)
 - Admin Rights Required
 
Schema
- error string
Error message
 
{
  "error": "Administrator rights required"
}
{
  "error": "Administrator rights required"
}