1 | |
2 | type Brevo = { |
3 | apiKey: string; |
4 | }; |
5 | |
6 | * Get all the segments |
7 | * |
8 | */ |
9 | export async function main( |
10 | auth: Brevo, |
11 | limit: string | undefined, |
12 | offset: string | undefined, |
13 | sort: "asc" | "desc" | undefined, |
14 | ) { |
15 | const url = new URL(`https://api.brevo.com/v3/contacts/segments`); |
16 | for (const [k, v] of [ |
17 | ["limit", limit], |
18 | ["offset", offset], |
19 | ["sort", sort], |
20 | ]) { |
21 | if (v !== undefined && v !== "" && k !== undefined) { |
22 | url.searchParams.append(k, v); |
23 | } |
24 | } |
25 | const response = await fetch(url, { |
26 | method: "GET", |
27 | headers: { |
28 | "api-key": auth.apiKey, |
29 | }, |
30 | body: undefined, |
31 | }); |
32 | if (!response.ok) { |
33 | const text = await response.text(); |
34 | throw new Error(`${response.status} ${text}`); |
35 | } |
36 | return await response.json(); |
37 | } |
38 |
|