0

Get application fees fee refunds id

by
Published Oct 30, 2023

By default, you can see the 10 most recent refunds stored directly on the application fee object, but you can also retrieve details about a specific refund stored on the application fee.

Script stripe Verified

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 398 days ago
1
type Stripe = {
2
  token: string;
3
};
4
/**
5
 * Get application fees fee refunds id
6
 * By default, you can see the 10 most recent refunds stored directly on the application fee object, but you can also retrieve details about a specific refund stored on the application fee.
7
 */
8
export async function main(auth: Stripe, fee: string, id: string, expand: any) {
9
  const url = new URL(
10
    `https://api.stripe.com/v1/application_fees/${fee}/refunds/${id}`
11
  );
12
  encodeParams({ expand }).forEach((v, k) => {
13
    if (v !== undefined && v !== "") {
14
      url.searchParams.append(k, v);
15
    }
16
  });
17
  const response = await fetch(url, {
18
    method: "GET",
19
    headers: {
20
      "Content-Type": "application/x-www-form-urlencoded",
21
      Authorization: "Bearer " + auth.token,
22
    },
23
    body: undefined,
24
  });
25
  if (!response.ok) {
26
    const text = await response.text();
27
    throw new Error(`${response.status} ${text}`);
28
  }
29
  return await response.json();
30
}
31

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