Get tagrelations

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

Last Update: 11 NOV 2024

Example URL

https://{api_base_url}/integration/webapi/tagrelation

Retrieve Tagrelations

Method: GET

URL: {{base_url}}/tagrelation

Response Example:

{
    "result": [
        {
            "tagRelationName": "string",
            "description": "string",
            "enableHyperTable": bool,
            "isView": bool
        }
    ]
}

Response Details:

ObjectData TypeDescription

result

array

List of tag relation objects.

tagRelationName

string

Name of the tag relation.

description

string

Description of the tag relation.

enableHyperTable

bool

Indicates if the hyper table feature is enabled.

isView

bool

Indicates if the tag relation is viewable.

Last updated