Update multiple tagrelation values
Updates the specified values for the tag relation
Last updated
Updates the specified values for the tag relation
Last updated
Last Update: 7 NOV 2024
Example URL
Note: This endpoint demonstrates updating the value for a specific tag relation (TagRelationData3
) using the PUT method. In this example, the PUT request is used to modify the value of the tag relation.
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 |
---|---|---|
Field Value Object:
Parameter | Data Type | Description |
---|---|---|
Value Data Types:
Example Request Body:
Response Example:
Response Details:
Data Type | Description |
---|---|
Object | Data Type | Description |
---|---|---|
tagRelationValueId
int
Unique identifier for the tag relation value.
timeStamp
datetime
Timestamp of when the values are recorded.
fieldValues
array
An array of field value objects, each containing:
field_Id
int
Unique identifier for the field.
value
variant
The value associated with the field, which can be one of the following data types:
string
Represents text data.
int
Represents integer data.
big int
Represents large integer data.
boolean
Represents boolean values (true
/false
).
double
Represents floating-point data.
message
string
Success message indicating the result of the write operation.