Get quotes

Returns a list of your quotes.

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
 * Get quotes
6
 * Returns a list of your quotes.
7
 */
8
export async function main(
9
  auth: Stripe,
10
  customer: string | undefined,
11
  ending_before: string | undefined,
12
  expand: any,
13
  limit: string | undefined,
14
  starting_after: string | undefined,
15
  status: "accepted" | "canceled" | "draft" | "open" | undefined,
16
  test_clock: string | undefined
17
) {
18
  const url = new URL(`https://api.stripe.com/v1/quotes`);
19
  for (const [k, v] of [
20
    ["customer", customer],
21
    ["ending_before", ending_before],
22
    ["limit", limit],
23
    ["starting_after", starting_after],
24
    ["status", status],
25
    ["test_clock", test_clock],
26
  ]) {
27
    if (v !== undefined && v !== "") {
28
      url.searchParams.append(k, v);
29
    }
30
  }
31
  encodeParams({ expand }).forEach((v, k) => {
32
    if (v !== undefined && v !== "") {
33
      url.searchParams.append(k, v);
34
    }
35
  });
36
  const response = await fetch(url, {
37
    method: "GET",
38
    headers: {
39
      "Content-Type": "application/x-www-form-urlencoded",
40
      Authorization: "Bearer " + auth.token,
41
    },
42
    body: undefined,
43
  });
44
  if (!response.ok) {
45
    const text = await response.text();
46
    throw new Error(`${response.status} ${text}`);
47
  }
48
  return await response.json();
49
}
50

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