1 | type Asana = { |
2 | token: string; |
3 | }; |
4 | |
5 | * Get multiple projects |
6 | * Returns the compact project records for some filtered set of projects. Use one or more of the parameters provided to filter the projects returned. |
7 | *Note: This endpoint may timeout for large domains. Try filtering by team!* |
8 | */ |
9 | export async function main( |
10 | auth: Asana, |
11 | opt_pretty: string | undefined, |
12 | opt_fields: string | undefined, |
13 | limit: string | undefined, |
14 | offset: string | undefined, |
15 | workspace: string | undefined, |
16 | team: string | undefined, |
17 | archived: string | undefined |
18 | ) { |
19 | const url = new URL(`https://app.asana.com/api/1.0/projects`); |
20 | for (const [k, v] of [ |
21 | ["opt_pretty", opt_pretty], |
22 | ["opt_fields", opt_fields], |
23 | ["limit", limit], |
24 | ["offset", offset], |
25 | ["workspace", workspace], |
26 | ["team", team], |
27 | ["archived", archived], |
28 | ]) { |
29 | if (v !== undefined && v !== "") { |
30 | url.searchParams.append(k, v); |
31 | } |
32 | } |
33 | const response = await fetch(url, { |
34 | method: "GET", |
35 | headers: { |
36 | Authorization: "Bearer " + auth.token, |
37 | }, |
38 | body: undefined, |
39 | }); |
40 | if (!response.ok) { |
41 | const text = await response.text(); |
42 | throw new Error(`${response.status} ${text}`); |
43 | } |
44 | return await response.json(); |
45 | } |
46 |
|