Delete multiple Tag Relation values

Delete the specified tag relation values for tag relation based on their timestamps.

Example URL

https://api.icube.co.th/integration/webapi/tagrelation/TagRelationData3/value

Last Update: 1 NOV 2024

Delete Tag Relation Values

Method: DELETE

URL: {{base_url}}/tagrelation/{tagrelationname}/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 relation 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