Get Tag Relation all

Fetches a list of tag relations, including details about each relation and its properties.

Example URL

https://api.icube.co.th/integration/webapi/tagrelation

Last Update: 7 NOV 2024

Retrieve Tag Relations

Method: GET

URL: {{base_url}}/tagrelation

Response Example:

{
    "result": [
        {
            "tagRelationName": "string",
            "server": "string",
            "description": "string",
            "createAt": "datetime",
            "updateAt": "datetime or null",
            "deleteAt": "datetime or null",
            "enableHyperTable": bool,
            "isView": bool
        }
    ]
}

Response Details:

ObjectData TypeDescription

result

array

List of tag relation objects.

tagRelationName

string

Name of the tag relation.

server

string

Server name associated with the tag relation.

description

string

Description of the tag relation.

createAt

datetime

Timestamp of when the tag relation was created.

updateAt

datetime/null

Timestamp of the last update, if applicable.

deleteAt

datetime/null

Timestamp of when the tag relation was deleted, if applicable.

enableHyperTable

bool

Indicates if the hyper table feature is enabled.

isView

bool

Indicates if the tag relation is viewable.

Last updated