0
Remove an existing API key
One script reply has been approved by the moderators Verified
Created by rubenfiszel 621 days ago Viewed 22454 times
0
Submitted by rubenfiszel Typescript (fetch-only)
Verified 621 days ago
1
type Resend = {
2
  token: string;
3
};
4
/**
5
 * Remove an existing API key
6
 *
7
 */
8
export async function main(auth: Resend, api_key_id: string) {
9
  const url = new URL(`https://api.resend.com/api-keys/${api_key_id}`);
10

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