cURL
curl -X DELETE "https://api.sitespy.app/api/v1/tag/550e8400-e29b-41d4-a716-446655440000" \
-H "x-api-key: YOUR_API_KEY"import requests
headers = {'x-api-key': 'YOUR_API_KEY'}
tag_uuid = '550e8400-e29b-41d4-a716-446655440000'
response = requests.delete(f'https://api.sitespy.app/api/v1/tag/{tag_uuid}', headers=headers)
print(response.text)
const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/tag/{uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Tag Management
Delete tag
Delete a tag/group and remove it from all web page change monitors (watches)
DELETE
/
tag
/
{uuid}
cURL
curl -X DELETE "https://api.sitespy.app/api/v1/tag/550e8400-e29b-41d4-a716-446655440000" \
-H "x-api-key: YOUR_API_KEY"import requests
headers = {'x-api-key': 'YOUR_API_KEY'}
tag_uuid = '550e8400-e29b-41d4-a716-446655440000'
response = requests.delete(f'https://api.sitespy.app/api/v1/tag/{tag_uuid}', headers=headers)
print(response.text)
const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/tag/{uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
