1 | |
2 | type Grist = { |
3 | apiKey: string; |
4 | host: string; |
5 | }; |
6 | |
7 | * Retrieve list of users |
8 | * |
9 | */ |
10 | export async function main( |
11 | auth: Grist, |
12 | startIndex: string | undefined, |
13 | count: string | undefined, |
14 | filter: string | undefined, |
15 | ) { |
16 | const url = new URL(`https://${auth.host}/api/scim/v2/Users`); |
17 | for (const [k, v] of [ |
18 | ["startIndex", startIndex], |
19 | ["count", count], |
20 | ["filter", filter], |
21 | ]) { |
22 | if (v !== undefined && v !== "" && k !== undefined) { |
23 | url.searchParams.append(k, v); |
24 | } |
25 | } |
26 | const response = await fetch(url, { |
27 | method: "GET", |
28 | headers: { |
29 | Authorization: "Bearer " + auth.apiKey, |
30 | }, |
31 | body: undefined, |
32 | }); |
33 | if (!response.ok) { |
34 | const text = await response.text(); |
35 | throw new Error(`${response.status} ${text}`); |
36 | } |
37 | return await response.text(); |
38 | } |
39 |
|