Skip to content
Stand with Ukraine flag

Claiming

Device Claiming lets an end user securely associate a deployed device with their account. For a full explanation of the claiming workflow, see Claiming Devices.

See Getting Connected for authentication and connection details.

The device initiates claiming by sending a POST request:

POST http(s)://THINGSBOARD_HOST/api/v1/$ACCESS_TOKEN/claim
{"secretKey": "mySecret", "durationMs": 60000}
Terminal window
curl -s -X POST -H "Content-Type: application/json" -d '{"secretKey":"mySecret","durationMs":60000}' "http://$THINGSBOARD_HOST/api/v1/$ACCESS_TOKEN/claim"
FieldRequiredDescription
secretKeyNoSecret used to authorize the claim. Defaults to an empty string if omitted.
durationMsNoTime window in milliseconds during which the device can be claimed. Defaults to the system value of SECURITY_CLAIM_DURATION.