Attributes
The CoAP Attributes API lets devices upload client-side attributes, request attribute values, and subscribe to shared attribute updates using the CoAP Observe option. For an explanation of attribute types, see Attributes.
See Getting Connected for credential types and connection details.
Publish Client-Side Attributes
Section titled “Publish Client-Side Attributes”Send a POST request to upload client-side attributes:
| Credential type | URL |
|---|---|
| Access Token | coap(s)://THINGSBOARD_HOST:5683/api/v1/$ACCESS_TOKEN/attributes |
| X.509 Certificate | coaps://THINGSBOARD_HOST/api/v1/attributes |
{"attribute1": "value1", "attribute2": true, "attribute3": 42.0}Access Token:
coap-client -v 6 -m POST -t "application/json" -e '{"attribute1":"value1","attribute2":true,"attribute3":42.0}' "coap://$THINGSBOARD_HOST:5683/api/v1/$ACCESS_TOKEN/attributes"X.509 Certificate:
coap-client-openssl -v 6 -c cert.pem -j key.pem -m POST -t "application/json" -e '{"attribute1":"value1","attribute2":true,"attribute3":42.0}' "coaps://$THINGSBOARD_HOST/api/v1/attributes"Request Attribute Values
Section titled “Request Attribute Values”Send a GET request with clientKeys and sharedKeys query parameters:
| Credential type | URL |
|---|---|
| Access Token | coap(s)://THINGSBOARD_HOST:5683/api/v1/$ACCESS_TOKEN/attributes?clientKeys=attr1,attr2&sharedKeys=shared1,shared2 |
| X.509 Certificate | coaps://THINGSBOARD_HOST/api/v1/attributes?clientKeys=attr1,attr2&sharedKeys=shared1,shared2 |
Access Token:
coap-client -v 6 -m GET "coap://$THINGSBOARD_HOST:5683/api/v1/$ACCESS_TOKEN/attributes?clientKeys=attribute1,attribute2&sharedKeys=shared1,shared2"Response:
{"client": {"attribute1": "value1", "attribute2": true}, "shared": {"shared1": "value2", "shared2": false}}When the device profile payload type is set to Protobuf, the request and response use fixed schemas. See MQTT Attributes for the Protobuf schemas.
Subscribe to Shared Attribute Updates
Section titled “Subscribe to Shared Attribute Updates”Use the CoAP Observe option to receive push notifications when shared attributes change. The connection stays open and ThingsBoard sends a response each time a shared attribute is updated.
| Credential type | URL |
|---|---|
| Access Token | coap(s)://THINGSBOARD_HOST:5683/api/v1/$ACCESS_TOKEN/attributes/updates |
| X.509 Certificate | coaps://THINGSBOARD_HOST/api/v1/attributes/updates |
Access Token (observe for 60 seconds):
coap-client -v 6 -m GET -s 60 "coap://$THINGSBOARD_HOST:5683/api/v1/$ACCESS_TOKEN/attributes/updates"X.509 Certificate:
coap-client-openssl -v 6 -c cert.pem -j key.pem -m GET -s 60 "coaps://$THINGSBOARD_HOST/api/v1/attributes/updates"When a shared attribute changes, ThingsBoard pushes the updated values:
{"shared": {"firmware_version": "2.1.0"}}When the device profile payload type is set to Protobuf, notifications use a fixed schema. See MQTT Attributes for the Protobuf schema.