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:

ParameterData TypeDescription

timeStamp

datetime

The timestamp of the tag value to be deleted.


Example Request Body:

[
    {
        "timeStamp": "datetime"
    },
    {
        "timeStamp": "datetime"
    }
]

Response Example:

{
    "message": "string"
}

Response Details:

ObjectData TypeDescription

message

string

Success message indicating the result of the delete operation.

Last updated