Get a list of webhooks
GET
https://api.vercel.com/v1/webhooksGet a list of webhooks
https://api.vercel.com/v1/webhooks
const response = await fetch('https://api.vercel.com/v1/webhooks?projectId=string&teamId=string&slug=string', { method: 'GET', headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN', 'Content-Type': 'application/json', },});
const data = await response.json();console.log(data);Response
[ { "projectsMetadata": [ { "id": "icfg_1234567890", "name": "Example Name", "framework": "actix-web", "latestDeployment": "string" } ], "alertRuleIds": [], "events": [], "id": "account_hook_GflD6EYyo7F4ViYS", "url": "https://my-webhook.com", "ownerId": "ZspSRT4ljIEEmMHgoDwKWDei", "createdAt": "1567024758130", "updatedAt": "1567024758130", "projectIds": [] }]AuthorizationbearerToken
Default authentication mechanism