Update multiple tag values
Updates the specified values for the tag with GUID
Last Update: 7 NOV 2024
Example URL
https://{api_base_url}/integration/webapi/tag/B15-Status/value
Note: This endpoint demonstrates updating the value for a specific tag (B15-Status
) using the PUT method. In this example, the PUT request is used to modify the value of the tag.
Update Tag Value
Method: PUT
URL: {{base_url}}/tag/{tagname}/value
Request Body:
The request body must be an array of tag value objects, each containing the following parameters:
tagValueId
GUID
Unique identifier for the tag value.
value
variant
The value associated with the tag. It can be one of the following data types:
timeStamp
datetime
Timestamp of when the value is recorded.
Value Data Types:
string
Represents text data.
int
Represents integer data.
boolean
Represents boolean values (true
/false
).
double
Represents floating-point data.
Example Request Body:
[
{
"tagValueId": "GUID",
"value": "variant",
"timeStamp": "datetime"
},
{
"tagValueId": "GUID",
"value": "variant",
"timeStamp": "datetime"
}
]
Response Example:
{
"message": "string"
}
Response Details:
message
string
Success message indicating the result of the write operation.
Last updated