Get identifiers list
Returns identifiers list with options could be used to sort and filter them
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
- 400
- 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 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 filter sets for identifier oneOf- MOD1
- MOD2
 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 - 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 object[]
{
  "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_uid": 3,
      "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
        }
      },
      "apartment": {
        "uid": 3,
        "link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
        "logical_address": {
          "building": 1,
          "unit": 1,
          "floor": 1,
          "room": 1
        }
      },
      "time_profiles": {
        "uid_items": [
          11,
          13,
          23,
          42
        ],
        "link_ids": [
          "91c615e3-1040-4815-8ecb-039a18b756b1",
          "91c615e3-1040-4815-8ecb-039a18b756b2",
          "91c615e3-1040-4815-8ecb-039a18b756b3",
          "91c615e3-1040-4815-8ecb-039a18b756b4"
        ],
        "count": 4
      },
      "additional": {
        "passes_left": 3
      }
    }
  ]
}
{
  "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",
        "name"
      ],
      "is_filtered": true
    },
    "sort": {
      "field": "name",
      "asc": true,
      "available_fields": [
        "identifier_number",
        "name"
      ]
    }
  },
  "list_items": [
    {
      "identifier_uid": 3,
      "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
        }
      },
      "apartment": {
        "uid": 3,
        "logical_address": {
          "building": 1,
          "unit": 1,
          "floor": 1,
          "room": 1
        }
      },
      "time_profiles": {
        "uid_items": [
          11,
          13,
          23,
          42
        ],
        "count": 4
      },
      "additional": {
        "passes_left": 3
      }
    }
  ]
}
Base errors for all entities
- Wrong pagination limit
- Wrong page number
- Wrong filter type
- Wrong filter field
- Wrong filter format
- Wrong filter value
- Wrong sort type
 Errors appeared only in log entities:
- Wrong time format
- Wrong time range: 'to' must be greater then 'from'
 Errors apperared in other entities:
- Wrong sort field
- application/json
- Schema
- Example (from schema)
- Pagination Limit
- Pagination Page Number
- Sort type
- Sort field
- Filter type
- Filter field
- Filter value
- Filter format
- Time format
- Time range
Schema
- error string
{
  "error": "Administrator rights required"
}
{
  "error": "Wrong pagination limit"
}
{
  "error": "Wrong page number"
}
{
  "error": "Wrong sort type"
}
{
  "error": "Wrong sort field"
}
{
  "error": "Wrong filter type"
}
{
  "error": "Wrong filter field"
}
{
  "error": "Wrong filter value"
}
{
  "error": "Wrong filter format"
}
{
  "error": "Wrong time format"
}
{
  "error": "Wrong time range: 'to' must be greater then 'from'"
}
Unauthorized request. Log In
- application/json
- Schema
- Example (from schema)
- Log In
Schema
- error string
{
  "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": "Administrator rights required"
}
{
  "error": "Administrator rights required"
}