observability
Delete Revalidation Trigger
Delete a revalidation trigger.
DELETE
/
v1
/
observe
/
triggers
/
{trigger_id}
Delete Revalidation Trigger
curl --request DELETE \
--url https://api.example.com/v1/observe/triggers/{trigger_id}import requests
url = "https://api.example.com/v1/observe/triggers/{trigger_id}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.example.com/v1/observe/triggers/{trigger_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}⌘I
Delete Revalidation Trigger
curl --request DELETE \
--url https://api.example.com/v1/observe/triggers/{trigger_id}import requests
url = "https://api.example.com/v1/observe/triggers/{trigger_id}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.example.com/v1/observe/triggers/{trigger_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}