Delete a webhook endpoint
Delete an endpoint; deliveries stop and its signing secret is invalidated.
DELETE
Delete a webhook endpoint
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete an endpoint; deliveries stop and its signing secret is invalidated.
curl --request DELETE \
--url https://api.orbitsearch.com/v3/webhooks/{webhook_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbitsearch.com/v3/webhooks/{webhook_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.orbitsearch.com/v3/webhooks/{webhook_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text){
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"deleted": true
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}curl --request DELETE \
--url https://api.orbitsearch.com/v3/webhooks/{webhook_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbitsearch.com/v3/webhooks/{webhook_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.orbitsearch.com/v3/webhooks/{webhook_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text){
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"deleted": true
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"status": "failed",
"error": {
"code": "<string>",
"message": "<string>"
}
}