IRIS360 PUBLIC API
  1. Devices
IRIS360 PUBLIC API
  • iris360
    • Timeseries
      • Get Timeseries
    • Entities
      • Paginate Entitites
      • Get entity latest data
    • Auth
      • Get user token
      • Refresh user token
    • Connectors
      • Out
        • Paginate Connectors
        • Update Connector Models
        • Get Connector
    • Devices
      • Paginate Devices
        POST
      • Import file
        POST
      • Send Commands in Bulk
        POST
  1. Devices

Paginate Devices

Developing
POST
/api/public/v1/devices/paginate

Devices pagination request#

This request retrieves all devices that the user has permissions to interact with.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
  "orderBy": "devices.serial",
  "orderDirection": false,
  "page": 1,
  "paginationSize": 10
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/public/v1/devices/paginate' \
--header 'Content-Type: application/json' \
--data-raw '{
  "orderBy": "devices.serial",
  "orderDirection": false,
  "page": 1,
  "paginationSize": 10
}'

Responses

🟢200Success
application/json
Body

Example
{
    "rows": [
        {
            "id": 1,
            "case_id": "OneCaseId",
            "name": "OneName",
            "serial": "OneSerial",
            "description": null,
            "is_subscribed": true,
            "owner": false,
            "properties": {},
            "subscribed_until": "2100-01-01 00:00:00",
            "type": {
                "id": 7,
                "code": "one_fiware",
                "name": "ONE",
                "brand": "Libelium",
                "category": "One"
            },
            "entities": [
                42248
            ]
        },
        {
            "id": 2,
            "case_id": "OneCaseId2",
            "name": "OneName2",
            "serial": "OneSerial2",
            "description": null,
            "is_subscribed": true,
            "owner": false,
            "properties": {},
            "subscribed_until": "2100-01-01 00:00:00",
            "type": {
                "id": 7,
                "code": "one_fiware",
                "name": "ONE",
                "brand": "Libelium",
                "category": "One"
            },
            "entities": [
                42250
            ]
        }
    ],
    "count": 2
}
Modified at 2025-03-19 13:26:18
Previous
Get Connector
Next
Import file
Built with