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
  • Schemas
    • Time Series
      • request
        • TimeSeriesRequest
        • TimeSeriesOptions
        • TimeSeriesAggregationOptions
        • TimeScope
        • TimeScopeAdjustment
      • response
        • TimeSeriesResponse
        • TimeSeries
        • TimeSeriesValue
    • Entity
      • EntitySchema
      • EntityProperty
      • EntityRelationship
      • EntityCommand
    • Connectors
      • Out
        • OutConnector
        • MQTT
        • Azure
        • Http
        • Fiware
        • Sentilo
        • SimpleOutConnector
    • Devices
      • DevicesSchema
    • PaginationRequest
  1. Devices

Send Commands in Bulk

Developing
POST
/api/public/v1/devices/sendCommandsBulk

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
{
    "device_serials": ["ONE001"],
    "w_ota": true
}

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/sendCommandsBulk' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "device_serials": ["ONE001"],
    "w_ota": true
}'

Responses

🟢207OK
application/json
Body

Example
[
    {
        "headers": {},
        "original": {
            "data": "Command sent!!"
        },
        "exception": null
    }
]
🟠400Bad Request
Modified at 2025-06-03 09:00:34
Previous
Import file
Next
TimeSeriesRequest
Built with