Post setup intents intent cancel

You can cancel a SetupIntent object when it’s in one of these statuses: requires_payment_method, requires_confirmation, or requires_action. After you cancel it, setup is abandoned and any operations on the SetupIntent fail with an error.

Script stripe Verified

by hugo697 · 10/30/2023

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 368 days ago
1
type Stripe = {
2
  token: string;
3
};
4
/**
5
 * Post setup intents intent cancel
6
 * You can cancel a SetupIntent object when it’s in one of these statuses: requires_payment_method, requires_confirmation, or requires_action. 
7

8
After you cancel it, setup is abandoned and any operations on the SetupIntent fail with an error.
9
 */
10
export async function main(
11
  auth: Stripe,
12
  intent: string,
13
  body: {
14
    cancellation_reason?: "abandoned" | "duplicate" | "requested_by_customer";
15
    expand?: string[];
16
  }
17
) {
18
  const url = new URL(
19
    `https://api.stripe.com/v1/setup_intents/${intent}/cancel`
20
  );
21

22
  const response = await fetch(url, {
23
    method: "POST",
24
    headers: {
25
      "Content-Type": "application/x-www-form-urlencoded",
26
      Authorization: "Bearer " + auth.token,
27
    },
28
    body: encodeParams(body),
29
  });
30
  if (!response.ok) {
31
    const text = await response.text();
32
    throw new Error(`${response.status} ${text}`);
33
  }
34
  return await response.json();
35
}
36

37
function encodeParams(o: any) {
38
  function iter(o: any, path: string) {
39
    if (Array.isArray(o)) {
40
      o.forEach(function (a) {
41
        iter(a, path + "[]");
42
      });
43
      return;
44
    }
45
    if (o !== null && typeof o === "object") {
46
      Object.keys(o).forEach(function (k) {
47
        iter(o[k], path + "[" + k + "]");
48
      });
49
      return;
50
    }
51
    data.push(path + "=" + o);
52
  }
53
  const data: string[] = [];
54
  Object.keys(o).forEach(function (k) {
55
    if (o[k] !== undefined) {
56
      iter(o[k], k);
57
    }
58
  });
59
  return new URLSearchParams(data.join("&"));
60
}
61