deleteWebhookEndpointsWebhookEndpoint
Delete a webhook endpoint
DELETE /v1/webhook_endpoints/{webhook_endpoint} HTTP/1.1Parameters
{
"webhook_endpoint": {
"description": "",
"required": true,
"location": "path",
"type": "string"
}
}Response Schema
{
"description": "",
"properties": {
"deleted": {
"description": "Always true for a deleted object",
"enum": [
true
],
"type": "boolean"
},
"id": {
"description": "Unique identifier for the object.",
"maxLength": 5000,
"type": "string"
},
"object": {
"description": "String representing the object's type. Objects of the same type share the same value.",
"enum": [
"webhook_endpoint"
],
"type": "string"
}
},
"required": [
"deleted",
"id",
"object"
],
"title": "NotificationWebhookEndpointDeleted",
"type": "object",
"x-expandableFields": [],
"x-resourceId": "deleted_webhook_endpoint"
}