action vercel_delete_integration_log_drain { label: "Deletes the Integration log drain with the provided `id`" description: "Deletes the Integration log drain with the provided `id`. When using an OAuth2 Token, the log drain can be deleted only if the integration owns it." provider: vercel method: DELETE path: "/v1/integrations/log-drains/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" description: "ID of the log drain to be deleted" } teamId: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }