Post treasury outbound transfers

Creates an OutboundTransfer.

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 treasury outbound transfers
6
 * Creates an OutboundTransfer.
7
 */
8
export async function main(
9
  auth: Stripe,
10
  body: {
11
    amount: number;
12
    currency: string;
13
    description?: string;
14
    destination_payment_method?: string;
15
    destination_payment_method_options?: {
16
      us_bank_account?:
17
        | { network?: "ach" | "us_domestic_wire"; [k: string]: unknown }
18
        | "";
19
      [k: string]: unknown;
20
    };
21
    expand?: string[];
22
    financial_account: string;
23
    metadata?: { [k: string]: string };
24
    statement_descriptor?: string;
25
  }
26
) {
27
  const url = new URL(`https://api.stripe.com/v1/treasury/outbound_transfers`);
28

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

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