Delete Tag
curl --request DELETE \
--url https://app.fliqr.ai/api/accounts/tags/{tag_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'DELETE', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/tags/{tag_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/tags/{tag_id}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true
}Accounts
Delete tag
Delete a tag
DELETE
/
accounts
/
tags
/
{tag_id}
Delete Tag
curl --request DELETE \
--url https://app.fliqr.ai/api/accounts/tags/{tag_id} \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'DELETE', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/tags/{tag_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/tags/{tag_id}"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true
}Was this page helpful?
⌘I