Delete multiple Tag values
Deletes the specified tag values for tag based on their timestamps.
Example URL
https://api.icube.co.th/integration/webapi/tag/B15-Status/value
Last Update: 1 NOV 2024
Delete Tag Values
Method: DELETE
URL: {{base_url}}/tag/{tagname}/value
Request Body:
The request body must be an array of objects, each containing the following parameter:
Parameter
Data Type
Description
timeStamp
datetime
The timestamp of the tag value to be deleted.
Example Request Body:
[
{
"timeStamp": "datetime"
},
{
"timeStamp": "datetime"
}
]
Response Example:
{
"message": "string"
}
Response Details:
Object
Data Type
Description
message
string
Success message indicating the result of the delete operation.
Last updated