Delete Webhook
DELETE
/webhooks/{webhook_id}Path parameters
webhook_idstringrequiredHeader parameters
authorizationstring | anyX-Api-Keystring | anyResponses
200Successful Response
any422Validation Error
detailValidationError[]Show propertiesHide properties
Array of
ValidationErrorlocstring | integer[]requiredShow propertiesHide properties
Array of
string | integerAny of:
string
stringinteger
integermsgstringrequiredtypestringrequiredRequest
curl -X DELETE "/webhooks/string"const response = await fetch("/webhooks/string", {
method: "DELETE"
});import requests
response = requests.delete(
"/webhooks/string",
)Response
"string"{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}