0

Delete an authentication token

by
Published Apr 8, 2025

Invalidate an authentication token, such that it will no longer be valid for future HTTP requests.

Script vercel Verified

The script

Submitted by hugo697 Bun
Verified 428 days ago
1
//native
2
type Vercel = {
3
  token: string;
4
};
5
/**
6
 * Delete an authentication token
7
 * Invalidate an authentication token, such that it will no longer be valid for future HTTP requests.
8
 */
9
export async function main(auth: Vercel, tokenId: string) {
10
  const url = new URL(`https://api.vercel.com/v3/user/tokens/${tokenId}`);
11

12
  const response = await fetch(url, {
13
    method: "DELETE",
14
    headers: {
15
      Authorization: "Bearer " + auth.token,
16
    },
17
    body: undefined,
18
  });
19
  if (!response.ok) {
20
    const text = await response.text();
21
    throw new Error(`${response.status} ${text}`);
22
  }
23
  return await response.json();
24
}
25