Insert multiple Tag values
Add the specified tag values with their timestamps.
Example URL
Last Update: 1 NOV 2024
Add Tag Values
Method: POST
URL: {{base_url}}/tag/value?mode=write
Query Parameters:
Parameter | Data Type | Description |
---|---|---|
| string | Mode of the Request
(Default: |
| bool | Update Status of data
(Default: |
| bool | Clear records of data
(Default: |
Request Body:
The request body must be an array of tag value objects, each containing the following parameters:
Parameter | Data Type | Description |
---|---|---|
| string | Name of the tag to which the value belongs. |
| datetime | Timestamp of the value being written. |
| variant | Value associated with the tag. It can be one of the following data types: |
Value Data Types:
Data Type | Description |
---|---|
| Represents text data. |
| Represents integer data. |
| Represents floating-point data. |
| Represents boolean values ( |
Example Request Body:
Response Example:
Response Details:
Object | Data Type | Description |
---|---|---|
| string | Success message indicating the result of the write operation. |
Last updated