remove the signing secret
Deliveries are then signed with the shared default secret.
DELETE
/
webhook-secret
remove the signing secret
curl --request DELETE \
--url https://eversince.ai/api/v1/webhook-secret \
--header 'Authorization: Bearer <token>'import requests
url = "https://eversince.ai/api/v1/webhook-secret"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eversince.ai/api/v1/webhook-secret', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"deleted": true
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}⌘I
remove the signing secret
curl --request DELETE \
--url https://eversince.ai/api/v1/webhook-secret \
--header 'Authorization: Bearer <token>'import requests
url = "https://eversince.ai/api/v1/webhook-secret"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eversince.ai/api/v1/webhook-secret', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"deleted": true
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}
