Remove Telegram notifications
curl --request DELETE \
--url https://api.sitespy.app/api/v1/telegram \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/telegram"
headers = {"x-api-key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/telegram', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Telegram notifications disabled"
}Telegram Notifications
Remove Telegram notifications
Disconnect Telegram and stop receiving notifications.
DELETE
/
telegram
Remove Telegram notifications
curl --request DELETE \
--url https://api.sitespy.app/api/v1/telegram \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/telegram"
headers = {"x-api-key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/telegram', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Telegram notifications disabled"
}
