Add a tag to a task

Adds a tag to a task. Returns an empty data block.

Script asana Verified

by hugo697 ยท 10/31/2023

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 383 days ago
1
type Asana = {
2
  token: string;
3
};
4
/**
5
 * Add a tag to a task
6
 * Adds a tag to a task. Returns an empty data block.
7
 */
8
export async function main(
9
  auth: Asana,
10
  task_gid: string,
11
  opt_pretty: string | undefined,
12
  opt_fields: string | undefined,
13
  body: { data?: { tag: string; [k: string]: unknown }; [k: string]: unknown }
14
) {
15
  const url = new URL(`https://app.asana.com/api/1.0/tasks/${task_gid}/addTag`);
16
  for (const [k, v] of [
17
    ["opt_pretty", opt_pretty],
18
    ["opt_fields", opt_fields],
19
  ]) {
20
    if (v !== undefined && v !== "") {
21
      url.searchParams.append(k, v);
22
    }
23
  }
24
  const response = await fetch(url, {
25
    method: "POST",
26
    headers: {
27
      "Content-Type": "application/json",
28
      Authorization: "Bearer " + auth.token,
29
    },
30
    body: JSON.stringify(body),
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