Skip to content

You can learn more about Asset Properties in the Overview ⟶ Concepts page.

Updating Asset Properties

To update the Asset Property, you can use the /properties/{property_name}/values/update API endpoint.

Note

You can only update an Asset property in the Kelvin UI or the Kelvin API.

To update an Asset Property, you can do this through editing the Asset.

Full documentation on how to edit an Asset is in the Platform Administration section under Asset Management.

You can not update an Asset Property in the Kelvin SDK.

API cURL Example
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
curl -X "POST" \
"https://<url.kelvin.ai>/api/v4/properties/<PROPERTY_NAME>/values/update" \
-H "Authorization: Bearer <Your Current Token>" \
-H "Content-Type: application/json" \
-H 'accept: */*' \
-d '{
"resource_values": {
  "krn:asset:<ASSET_NAME>": 1,
  "krn:asset:<ASSET_NAME>": 2
}