action vercel_delete_configurable_log_drain { label: "Deletes a Configurable Log Drain" description: "Deletes a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be deleted." provider: vercel method: DELETE path: "/v1/log-drains/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } teamId: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }