IRIS360 PUBLIC API
  1. Out
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
          POST
        • Update Connector Models
          PUT
        • Get Connector
          GET
    • Devices
      • Paginate Devices
      • Import file
  1. Out

Update Connector Models

Developing
PUT
/api/public/v1/connectors/out/updateModels/{id}
This endpoint updates either the devices or the entities related to a connector

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
number 
required
Connector unique id
Example:
1
Body Params application/json
optional
One of
devices
array[integer]
required
Ids of the devices to be related to the connector
Example
{
  "devices": [
    "integer",
    "integer"
  ]
}

Request 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 PUT '/api/public/v1/connectors/out/updateModels/1' \
--header 'Content-Type: application/json' \
--data-raw '{
    "devices": ["integer", "integer"]
}'

Responses

🟢204No Content
text/plain
Body
object {0}
Modified at 2025-03-24 11:27:54
Previous
Paginate Connectors
Next
Get Connector
Built with