Get Tag all

Fetches a list of tags, including their details and a link to access the latest tag values.

Example URL

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

Last Update: 1 NOV 2024

Retrieve Tag List

Method: GET

URL: {{base_url}}/tag

Response Example:

{
    "data": [
        {
            "tagname": "string",
            "server": "string",
            "description": "string or null",
            "subDescription": "string or null",
            "tagType": "string",
            "tagSource": "string",
            "tagMode": "string",
            "unit": "string",
            "timeStamp": "datetime",
            "value": "string"
        }
    ]
}

Response Details:

ObjectData TypeDescription

data

array

List of tag objects.

tagname

string

Name of the tag.

server

string

Server name where the tag originates.

description

string/null

Description of the tag.

subDescription

string/null

Additional description, if any.

tagType

string

Data type of the tag (e.g., "Double").

tagSource

string

Source type of the tag (e.g., "Normal tag").

tagMode

string

Mode of the tag (e.g., "Default").

unit

string

Unit of measurement (e.g., "L").

timeStamp

datetime

Timestamp of the tag's last recorded value.

value

string

URL link to access the latest value of the tag.

Last updated