Skip to main content
DELETE
/
api
/
v3
/
files
/
{id}
/
tags
/
{tag_id}
Remove a tag from a file
curl --request DELETE \
  --url https://paradigm.lighton.ai/api/v3/files/{id}/tags/{tag_id} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://paradigm.lighton.ai/api/v3/files/{id}/tags/{tag_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://paradigm.lighton.ai/api/v3/files/{id}/tags/{tag_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required
tag_id
integer
required

Response

Tag removed successfully (or was already not on the file)