Get multiple Identifier items with link_id
Get multiple Identifier items with link_id.
This can be used by 3d-patry management system. Link adds to each identifier and apartment link_id and apartment_link_id to link them together.
Query Parameters
- limit integerPossible values: [ 10,20,30,50]Number of items. Value by default is 10 
- page_number integerPossible values: >= 1Page number 
- sort_field stringField name (JSON Key in item entity) 
- sort_type stringPossible values: [ asc,desc]Default value: ascSort type (asc/desc) 
- filter objectFiltering options for Identifiers 
- 200
- 401
- 403
OK
- application/json
- Schema
- Example (from schema)
- Example-1
Schema
- list_items object[]- identifier_owner objectname stringtype string- Possible values: [ - owner,- guest]identifier_type string- Possible values: [ - card,- ukey,- inputCode,- face_id,- qr,- license_plate]identifier_number string- 
hex, number or face eiginvalue data in Base64 - This param ignored if you create face identifier by uploading image 
- 
hex or dec if identifier_type is card or ukey 
- 
dec if identifier_type is inputCode 
- 
uuid if identifier_type is qr 
- 
pattern for hex and dec - [0-9]{1,10} or ([0-9A-Fa-f]{2}[:-]){1,7}([0-9A-Fa-f]{2}) 
 lock string- Possible values: [ - first,- second,- all]- valid object- time objectis_permanent booleanfrom int64- Unix Timestamp Date to int64- Unix Timestamp Date - passes objectis_permanent booleanmax_passes integer- Possible values: - >= 1face_image string- Optional field which allow to add face images in base64 format via link_id, if face_image field is defined, identifier_number ignored, and generates automatically - time_profiles object- List of unique entity ids of apartments, identifiers, timeprofiles, forwards. Typically used for bulk delete operations link_ids uuid[]link_id uuid- Unique entity set by the server to bind some parameters with each other. By default return null value apartment_link_id uuid- Unique entity set by the server to bind some parameters with each other. By default return null value - additional object- Passes left passes_left int32
- list_option object- This model provides the options can be used to sort, filter and pagination when getting list of identifiers - pagination object- Available pagination options for tables total_items integer- The total number of items found and reflected across all pages items_limit integer- Possible values: [ - 10,- 25,- 50]- Limiting the display of the amount of data for one page total_pages integer- Possible values: - >= 1- The number of pages that hold the requested data current_page integer- Possible values: - >= 1- Current page number - filter object- Available set of filters for the identifier table oneOf- MOD1
- MOD2
- MOD3
 filter_field string- Field available for filtering filter_type string- Possible values: [ - equal]- Available filtering type, only equal here filter_format string- Data format, only string here filter_value string- Identifier name filter_field string- Field available for filtering filter_type string- Possible values: [ - equal]- Available filtering type, only equal here filter_format string- Data format, only string here filter_value string- Identifier number filter_field string- Field available for filtering filter_type string- Possible values: [ - equal]- Available filtering type, only equal here filter_format string- link_id format, only string here filter_value string- Link id - sort object- Available sorting options for the identifiers table field string- Sorting field name asc boolean- Direction of sorting available_fields string[]- Available for sorting fields names 
{
  "list_items": [
    {
      "identifier_owner": {
        "name": "Sherlock Holmes",
        "type": "owner"
      },
      "identifier_type": "ukey",
      "identifier_number": "12345678",
      "lock": "first",
      "valid": {
        "time": {
          "is_permanent": false,
          "from": 1540819272,
          "to": 1540819272
        },
        "passes": {
          "is_permanent": false,
          "max_passes": 3
        }
      },
      "face_image": "/9j/4RVGRXhpZgAATU0AKgAAAAgADAEAAAMAAAABA8IAAAEBAAMAAAABBQAAAAECAAMAAAADAAAAngEGAAMAAAABAAIAAAESAAMAAAABAAEAAA",
      "time_profiles": {
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b5"
        ]
      },
      "link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
      "apartment_link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
      "additional": {
        "passes_left": 0
      }
    }
  ],
  "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": [
        "name"
      ]
    }
  }
}
{
  "list_items": [
    {
      "identifier_owner": {
        "name": "Sherlock Holmes",
        "type": "owner"
      },
      "identifier_type": "ukey",
      "identifier_number": "12345678",
      "face_image": "/9j/4RVGRXhpZgAATU0AKgAAAAgADAEAAAMAAAABA8IAAAEBAAMAAAABBQAAAAECAAMAAAADAAAAngEGAAMAAAABAAIAAAESAAMAAAABAAEAAA",
      "lock": "first",
      "valid": {
        "time": {
          "is_permanent": false,
          "from": 1540819272,
          "to": 1540819272
        },
        "passes": {
          "is_permanent": false,
          "max_passes": 3
        }
      },
      "time_profiles": {
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b5"
        ]
      },
      "link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
      "apartment_link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
      "additional": {
        "passes_left": 0
      }
    }
  ],
  "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": [
        "identifier_number",
        "link_id"
      ],
      "is_filtered": true
    },
    "sort": {
      "field": "name",
      "asc": true,
      "available_fields": [
        "name"
      ]
    }
  }
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
- error string
{
  "error": "Log In"
}
{
  "error": "Log In"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
- error string
{
  "error": "Administrator rights required"
}
{
  "error": "Administrator rights required"
}