Skip to content

Delete Insight Name

You can not delete Insight Names in the Kelvin UI.

API cURL Example
1
2
3
4
5
6
curl -X 'POST' \
  'https://<url.kelvin.ai>/api/v4/datatags/tags/Demo%20Doc%20Tag/delete' \
  -H 'Authorization: Bearer <Your Current Token>' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d ''

The response will only be the return code 200.

API Client (Python) Example
from kelvin.api.client import Client

# Login
client = Client(url="https://<url.kelvin.ai>", username="<your_username>")
client.login(password="<your_password>")

# Delete Data Tag Name
response = client.data_tag.delete_tag(tag_name="Demo Doc Tag")

print(response)

The response will look like this;

API Client (Python) Example Response
None