1 | type Stripe = { |
2 | token: string; |
3 | }; |
4 | |
5 | * Post test helpers treasury received debits |
6 | * Use this endpoint to simulate a test mode ReceivedDebit initiated by a third party. In live mode, you can’t directly create ReceivedDebits initiated by third parties. |
7 | */ |
8 | export async function main( |
9 | auth: Stripe, |
10 | body: { |
11 | amount: number; |
12 | currency: string; |
13 | description?: string; |
14 | expand?: string[]; |
15 | financial_account: string; |
16 | initiating_payment_method_details?: { |
17 | type: "us_bank_account"; |
18 | us_bank_account?: { |
19 | account_holder_name?: string; |
20 | account_number?: string; |
21 | routing_number?: string; |
22 | [k: string]: unknown; |
23 | }; |
24 | [k: string]: unknown; |
25 | }; |
26 | network: "ach"; |
27 | } |
28 | ) { |
29 | const url = new URL( |
30 | `https://api.stripe.com/v1/test_helpers/treasury/received_debits` |
31 | ); |
32 |
|
33 | const response = await fetch(url, { |
34 | method: "POST", |
35 | headers: { |
36 | "Content-Type": "application/x-www-form-urlencoded", |
37 | Authorization: "Bearer " + auth.token, |
38 | }, |
39 | body: encodeParams(body), |
40 | }); |
41 | if (!response.ok) { |
42 | const text = await response.text(); |
43 | throw new Error(`${response.status} ${text}`); |
44 | } |
45 | return await response.json(); |
46 | } |
47 |
|
48 | function encodeParams(o: any) { |
49 | function iter(o: any, path: string) { |
50 | if (Array.isArray(o)) { |
51 | o.forEach(function (a) { |
52 | iter(a, path + "[]"); |
53 | }); |
54 | return; |
55 | } |
56 | if (o !== null && typeof o === "object") { |
57 | Object.keys(o).forEach(function (k) { |
58 | iter(o[k], path + "[" + k + "]"); |
59 | }); |
60 | return; |
61 | } |
62 | data.push(path + "=" + o); |
63 | } |
64 | const data: string[] = []; |
65 | Object.keys(o).forEach(function (k) { |
66 | if (o[k] !== undefined) { |
67 | iter(o[k], k); |
68 | } |
69 | }); |
70 | return new URLSearchParams(data.join("&")); |
71 | } |
72 |
|