Update attribute values with timestamps
PUThttps://demo.openremote.io/api/master/asset/attributes/timestamp
Update attribute values with timestamps
Request
Header Parameters
Authorization string
X-Forwarded-Proto string
X-Forwarded-Host string
- application/json
Body
array
Array [
]
attributeState
object
ref
object
valueobject
timestampint64
messageIDstring
deletedboolean
realmstring
parentIdstring
oldValueobject
oldValueTimestampint64
pathstring[]
assetNamestring
assetTypestring
createdOndate-time
type
object
Responses
- default
default response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
ref
object
failurestring
Possible values: [ASSET_NOT_FOUND
, ATTRIBUTE_NOT_FOUND
, INSUFFICIENT_ACCESS
, INVALID_VALUE
, INTERCEPTOR_FAILURE
, STATE_STORAGE_FAILED
, CANNOT_PROCESS
, QUEUE_FULL
, UNKNOWN
, ASSET_ID_MISSING
, ATTRIBUTE_NAME_MISSING
]
[
{
"ref": {
"id": "7Bt8M3cXEP6BHPh8r47DYf",
"name": "location"
},
"failure": "ASSET_NOT_FOUND"
}
]
Authorization: oauth2
name: openidtype: oauth2flows: {
"clientCredentials": {
"tokenUrl": "/auth/realms/master/protocol/openid-connect/token",
"refreshUrl": "/auth/realms/master/protocol/openid-connect/token",
"scopes": {
"profile": "profile"
}
},
"authorizationCode": {
"authorizationUrl": "/auth/realms/master/protocol/openid-connect/auth",
"tokenUrl": "/auth/realms/master/protocol/openid-connect/token",
"refreshUrl": "/auth/realms/master/protocol/openid-connect/token",
"scopes": {
"profile": "profile"
}
}
}
- curl
- nodejs
- java
- python
- ruby
- csharp
- go
- php
- powershell
- CURL
curl -L -X PUT 'https://demo.openremote.io/api/master/asset/attributes/timestamp' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
-d '[
{
"attributeState": {
"ref": {
"id": "7Bt8M3cXEP6BHPh8r47DYf",
"name": "location"
},
"value": {}
},
"ref": {
"id": "7Bt8M3cXEP6BHPh8r47DYf",
"name": "location"
},
"value": {},
"timestamp": 0,
"messageID": "string",
"deleted": true,
"realm": "string",
"parentId": "string",
"oldValue": {},
"oldValueTimestamp": 0,
"path": [
"string"
],
"assetName": "string",
"assetType": "string",
"createdOn": "2024-07-29T15:51:28.071Z",
"type": {
"name": "string",
"constraints": [
{
"message": "string",
"type": "string"
}
],
"format": {
"useGrouping": true,
"minimumIntegerDigits": 0,
"minimumFractionDigits": 0,
"maximumFractionDigits": 0,
"minimumSignificantDigits": 0,
"maximumSignificantDigits": 0,
"asBoolean": true,
"asDate": true,
"asSlider": true,
"resolution": 0,
"dateStyle": "numeric",
"timeStyle": "numeric",
"dayPeriod": "numeric",
"hour12": true,
"iso8601": true,
"weekday": "numeric",
"era": "numeric",
"year": "numeric",
"month": "numeric",
"week": "numeric",
"day": "numeric",
"hour": "numeric",
"minute": "numeric",
"second": "numeric",
"fractionalSecondDigits": 0,
"timeZoneName": "numeric",
"momentJsFormat": "string",
"asNumber": true,
"asOnOff": true,
"asPressedReleased": true,
"asOpenClosed": true,
"asMomentary": true,
"multiline": true
},
"units": [
"string"
],
"arrayDimensions": 0,
"metaUseOnly": true,
"jsonType": "string"
}
}
]'
ResponseClear