Skip to main content
Delete a project webhook definition.

Tool details

FieldValue
Namedelete_project_webhook
GroupProjects

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug."
    },
    "webhook_definition_id": {
      "type": "string",
      "format": "uuid",
      "description": "Webhook definition ID."
    }
  },
  "required": [
    "project_reference",
    "webhook_definition_id"
  ],
  "additionalProperties": false,
  "description": "Structured delete webhook input schema for MCP tools.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "ok": {
      "type": "boolean",
      "const": true,
      "description": "The ok associated with this record."
    }
  },
  "required": [
    "ok"
  ],
  "additionalProperties": false,
  "description": "Structured delete webhook output schema for MCP tools.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}