Delete a check
DEL
https://api.vercel.com/v2/projects/{projectIdOrName}/checks/{checkId}Delete an existing check and all of its runs.
https://api.vercel.com/v2/projects/{projectIdOrName}/checks/{checkId}
const response = await fetch('https://api.vercel.com/v2/projects/projectIdOrName/checks/checkId?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
{ "success": "true"}AuthorizationbearerToken
Default authentication mechanism