Skip to content
Stand with Ukraine flag

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.

Send a POST request to upload client-side attributes:

Credential typeURL
Access Tokencoap(s)://coap.thingsboard.cloud:5683/api/v1/$ACCESS_TOKEN/attributes
X.509 Certificatecoaps://coap.thingsboard.cloud/api/v1/attributes
{"attribute1": "value1", "attribute2": true, "attribute3": 42.0}

Access Token:

Terminal window
coap-client -v 6 -m POST -t "application/json" -e '{"attribute1":"value1","attribute2":true,"attribute3":42.0}' "coap://coap.thingsboard.cloud:5683/api/v1/$ACCESS_TOKEN/attributes"

X.509 Certificate:

Terminal window
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://coap.thingsboard.cloud/api/v1/attributes"

Send a GET request with clientKeys and sharedKeys query parameters:

Credential typeURL
Access Tokencoap(s)://coap.thingsboard.cloud:5683/api/v1/$ACCESS_TOKEN/attributes?clientKeys=attr1,attr2&sharedKeys=shared1,shared2
X.509 Certificatecoaps://coap.thingsboard.cloud/api/v1/attributes?clientKeys=attr1,attr2&sharedKeys=shared1,shared2

Access Token:

Terminal window
coap-client -v 6 -m GET "coap://coap.thingsboard.cloud: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.

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 typeURL
Access Tokencoap(s)://coap.thingsboard.cloud:5683/api/v1/$ACCESS_TOKEN/attributes/updates
X.509 Certificatecoaps://coap.thingsboard.cloud/api/v1/attributes/updates

Access Token (observe for 60 seconds):

Terminal window
coap-client -v 6 -m GET -s 60 "coap://coap.thingsboard.cloud:5683/api/v1/$ACCESS_TOKEN/attributes/updates"

X.509 Certificate:

Terminal window
coap-client-openssl -v 6 -c cert.pem -j key.pem -m GET -s 60 "coaps://coap.thingsboard.cloud/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.