Delete an integration configuration
DEL
https://api.vercel.com/v1/integrations/configuration/{id}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.https://api.vercel.com/v1/integrations/configuration/{id}
const response = await fetch('https://api.vercel.com/v1/integrations/configuration/id?teamId=string&slug=string', { method: 'DELETE', headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN', 'Content-Type': 'application/json', },});
const data = await response.json();console.log(data);Response
{}AuthorizationbearerToken
Default authentication mechanism