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
      • Send Commands in Bulk
  • 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. 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

Body Params application/json

Example
{
    "devices": ["integer", "integer"]
}

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

Responses

🟢204No Content
text/plain
Body

Modified at 2025-03-24 11:27:54
Previous
Paginate Connectors
Next
Get Connector
Built with