Delete watchlist item
curl --request DELETE \
--url https://api.eventory.ai/watchlist/{id} \
--header 'apikey: <api-key>'import requests
url = "https://api.eventory.ai/watchlist/{id}"
headers = {"apikey": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {apikey: '<api-key>'}};
fetch('https://api.eventory.ai/watchlist/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Watchlist
Delete watchlist item
Deletes an item. The stream stops delivering notifications for it within 60 seconds.
Cost: free.
DELETE
/
watchlist
/
{id}
Delete watchlist item
curl --request DELETE \
--url https://api.eventory.ai/watchlist/{id} \
--header 'apikey: <api-key>'import requests
url = "https://api.eventory.ai/watchlist/{id}"
headers = {"apikey": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {apikey: '<api-key>'}};
fetch('https://api.eventory.ai/watchlist/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));