Delete an existing webhook.
Input
Encoding
application/jsonid
string
Required
The ID of the webhook to delete.
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the webhook was successfully deleted.
Errors
WebhookNotFound
The specified webhook was not found. Unauthorized
The authenticated user does not have access to this webhook. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "The ID of the webhook to delete."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "WebhookNotFound",
"description": "The specified webhook was not found."
},
{
"name": "Unauthorized",
"description": "The authenticated user does not have access to this webhook."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the webhook was successfully deleted."
}
}
},
"encoding": "application/json"
},
"parameters": null,
"description": "Delete an existing webhook."
}