Skip to content

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

Deleting Asset Properties

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

Note

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

To delete a 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 delete 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/delete>" \
-H "Authorization: Bearer <Your Current Token>" \
-H "Content-Type: application/json" \
-H 'accept: */*' \
-d '{
"resources": [
  "krn:asset:<ASSET_NAME>",
  "krn:asset:<ASSET_NAME>"
]