action vercel_delete_configuration { label: "Delete an integration configuration" description: "Allows to remove the configuration with the `id` provided in the parameters. The configuration and all of its resources will be removed. This includes Webhooks, LogDrains and Project Env variables." provider: vercel method: DELETE path: "/v1/integrations/configuration/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } teamId: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }