Post link account sessions

To launch the Financial Connections authorization flow, create a Session. The session’s client_secret can be used to launch the flow using Stripe.js.

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 link account sessions
6
 * To launch the Financial Connections authorization flow, create a Session. The session’s client_secret can be used to launch the flow using Stripe.js.
7
 */
8
export async function main(
9
  auth: Stripe,
10
  body: {
11
    account_holder: {
12
      account?: string;
13
      customer?: string;
14
      type: "account" | "customer";
15
      [k: string]: unknown;
16
    };
17
    expand?: string[];
18
    filters?: { countries: string[]; [k: string]: unknown };
19
    permissions: (
20
      | "balances"
21
      | "ownership"
22
      | "payment_method"
23
      | "transactions"
24
    )[];
25
    prefetch?: ("balances" | "ownership" | "transactions")[];
26
    return_url?: string;
27
  }
28
) {
29
  const url = new URL(`https://api.stripe.com/v1/link_account_sessions`);
30

31
  const response = await fetch(url, {
32
    method: "POST",
33
    headers: {
34
      "Content-Type": "application/x-www-form-urlencoded",
35
      Authorization: "Bearer " + auth.token,
36
    },
37
    body: encodeParams(body),
38
  });
39
  if (!response.ok) {
40
    const text = await response.text();
41
    throw new Error(`${response.status} ${text}`);
42
  }
43
  return await response.json();
44
}
45

46
function encodeParams(o: any) {
47
  function iter(o: any, path: string) {
48
    if (Array.isArray(o)) {
49
      o.forEach(function (a) {
50
        iter(a, path + "[]");
51
      });
52
      return;
53
    }
54
    if (o !== null && typeof o === "object") {
55
      Object.keys(o).forEach(function (k) {
56
        iter(o[k], path + "[" + k + "]");
57
      });
58
      return;
59
    }
60
    data.push(path + "=" + o);
61
  }
62
  const data: string[] = [];
63
  Object.keys(o).forEach(function (k) {
64
    if (o[k] !== undefined) {
65
      iter(o[k], k);
66
    }
67
  });
68
  return new URLSearchParams(data.join("&"));
69
}
70