Smithery

webhook_endpoints.self.create

Creates a shared webhook endpoint for a toolkit + OAuth app + project. Returns the webhook URL that the customer registers in their app dashboard. Idempotent — returns existing endpoint if one already exists for this toolkit + client_id + project.

Remote smithery/composio

Other tools also called webhook_endpoints.self.create? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "client_id": {
      "type": "string",
      "minLength": 1,
      "description": "OAuth app client ID — identifies which app this endpoint is for"
    },
    "toolkit_slug": {
      "type": "string",
      "minLength": 1,
      "description": "Toolkit identifier (e.g., slack, discord)"
    }
  }
}