Delete an authentication token
https://api.vercel.com/v3/user/tokens/{tokenId}const response = await fetch('https://api.vercel.com/v3/user/tokens/tokenId', { method: 'DELETE', headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN', 'Content-Type': 'application/json', },});
const data = await response.json();console.log(data);{ "tokenId": "5d9f2ebd38ddca62e5d51e9c1704c72530bdc8bfdd41e782a6687c48399e8391"}Default authentication mechanism