Object

Get objects

get
Query parameters
uristringOptional

Object URI to retrieve or all objects if not specified. The URI can include MQTT like wildcards (URL encoded + or #) e.g. uri=000001/%2b/0001/%23

Responses
200

Default Response

application/json
get
/api/historian/v3/object/
GET /api/historian/v3/object/ HTTP/1.1
Host: 
Accept: */*
{
  "ts": "2025-01-01T00:00:00.000Z",
  "data": [
    {
      "uri": "text",
      "hid": "text",
      "sid": "text",
      "pid": "text",
      "ins": "text",
      "name": "text",
      "description": "text",
      "location": "text",
      "tags": {
        "ANY_ADDITIONAL_PROPERTY": {
          "value": "text",
          "from": "text"
        }
      },
      "rids": [
        {
          "rid": "40",
          "settings": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "tags": {
            "ANY_ADDITIONAL_PROPERTY": {
              "value": "text",
              "from": "text"
            }
          }
        }
      ]
    }
  ]
}

Last updated

Was this helpful?