Get multiple Tag values
Fetches the values of specified tags identified by their names, with optional filters for time range and status.
Example URL
Last Update: 5 NOV 2024
Retrieve Tag Values with Filters
Method: GET
URL: {{base_url}}/tag/value?name={tagname}&starttime={starttime}&endtime={endtime}&statusData={statusData}
Query Parameters:
Parameter | Required | Description |
---|---|---|
| Yes | Comma-separated list of tag names to retrieve values for (e.g., |
| Yes | Starting time for filtering the data (e.g., |
| Yes | Ending time for filtering the data (e.g., |
| No | A filter for the status of the tag values, acting like a WHERE clause in PostgreSQL (only integer). |
Time Expression:
Expression | Description |
---|---|
| Second |
| Minute |
| Hour |
| Day |
| Month |
| Year |
| Present |
| Go back (e.g., |
| Go forward (e.g., |
Response Example:
Response Details:
Object | Data Type | Description |
---|---|---|
| array | Array of tag value objects returned from the API. |
| string | Name of the tag. |
| string/null | Description of the tag. |
| string/null | Additional description of the tag (if available). |
| string | The value of the tag. |
| string | Unit of measurement for the tag value. |
| integer | Quality indicator of the tag value. |
| integer | Status code associated with the tag value. |
| datetime | Timestamp when the tag value was recorded. |
Last updated