latestOpenAPI 3.0.0EUPLraw.githubusercontent.com2026-08-191426201.0 MB

fe8fd32c9fdc

Logs

Get item suggestions

Returns a list of item suggestions based on the provided name fragment

get/api/logs/items/suggest

Query parameters

namestring
scopeIdstring

Optional scope ID (e.g. connector or history query ID) to restrict suggestions to that scope only.

Response

Array of matching item objects

itemIdstring required

The unique identifier of the item (e.g., south connector item ID).

itemNamestring required

The human-readable name of the item.

scopeIdstring required

The unique identifier of the scope owning this item (e.g., connector ID).

scopeNamestring required

The human-readable name of the scope owning this item (e.g., connector or history query name).

Example response

[
  {
    "itemId": "item123",
    "itemName": "Temperature sensor",
    "scopeId": "connector123",
    "scopeName": "South Connector 1"
  }
]