Update multiple Tag Relation value
Updates the specified values for the tag relation
Example URL
Last Update: 1 NOV 2024
Update Tag Relation Value
Method: PUT
URL: {{base_url}}/tagrelation/{tagrelationname}/value
Request Body:
The request body must be an array of tag relation value objects, each containing the following parameters:
Parameter | Data Type | Description |
---|---|---|
| int | Unique identifier for the tag relation value. |
| datetime | Timestamp of when the values are recorded. |
| array | An array of field value objects, each containing: |
Field Value Object:
Parameter | Data Type | Description |
---|---|---|
| int | Unique identifier for the field. |
| variant | The value associated with the field, which can be one of the following data types: |
Value Data Types:
Data Type | Description |
---|---|
| Represents text data. |
| Represents integer data. |
| Represents large integer data. |
| Represents boolean values ( |
| Represents floating-point data. |
Example Request Body:
Response Example:
Response Details:
Object | Data Type | Description |
---|---|---|
| string | Success message indicating the result of the write operation. |
Last updated