Text Sensors
Storing Text
The HTTP integration of text allows storing text up to 255 characters in length using the following structure:
POST /services/gear/DeviceIntegrationService.svc/UpdateTextContainerStatus HTTP/1.1
Host: gear.cloud.studio
Content-Type: application/json
{
"accessToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"endpointID": 1,
"text": "Sample text...",
"timestamp": "2024-02-23T14:55:03"
}Parameters
| Name | Description | Data Type |
|---|---|---|
| accessToken | Access token with permissions to update endpoint information. See this page for more information. | text |
| endpointID | Unique endpoint identifier or combination of device address and endpoint address in format [deviceAddress]:endpointAddress (e.g.: [device-1234]:1). These values can be found on the endpoint management page. | numeric |
| text | Contenido de texto que se desea almacenar | text |
| timestamp | Optional value indicating the UTC date and time of the snapshot. The date format must match one of those specified in the date formats section. If the field is omitted, the platform will assume the measurement corresponds to the current date and time. | text |