0

Delete webhook endpoints webhook endpoint

by
Published Oct 30, 2023

You can also delete webhook endpoints via the webhook endpoint management page of the Stripe dashboard.

Script stripe Verified

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 398 days ago
1
type Stripe = {
2
  token: string;
3
};
4
/**
5
 * Delete webhook endpoints webhook endpoint
6
 * You can also delete webhook endpoints via the webhook endpoint management page of the Stripe dashboard.
7
 */
8
export async function main(auth: Stripe, webhook_endpoint: string) {
9
  const url = new URL(
10
    `https://api.stripe.com/v1/webhook_endpoints/${webhook_endpoint}`
11
  );
12

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