Edits history of script submission #13752 for ' Deletes a webhook (vercel)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Vercel = {
      token: string;
    };
    /**
     * Deletes a webhook
     * Deletes a webhook
     */
    export async function main(
      auth: Vercel,
      id: string,
      teamId: string | undefined,
      slug: string | undefined,
    ) {
      const url = new URL(`https://api.vercel.com/v1/webhooks/${id}`);
      for (const [k, v] of [
        ["teamId", teamId],
        ["slug", slug],
      ]) {
        if (v !== undefined && v !== "" && k !== undefined) {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "DELETE",
        headers: {
          Authorization: "Bearer " + auth.token,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.text();
    }
    

    Submitted by hugo697 428 days ago