0

Remove Location Tags

by
Published Oct 17, 2025
Script tomorrow Verified

The script

Submitted by hugo697 Bun
Verified 235 days ago
1
//native
2
type Tomorrow = {
3
  apiKey: string;
4
};
5
/**
6
 * Remove Location Tags
7
 *
8
 */
9
export async function main(
10
  auth: Tomorrow,
11
  Accept_Encoding: string,
12
  body: { locations: string[]; tags: string[] },
13
) {
14
  const url = new URL(`https://api.tomorrow.io/v4/locations/tags/remove`);
15

16
  const response = await fetch(url, {
17
    method: "POST",
18
    headers: {
19
      "Accept-Encoding": Accept_Encoding,
20
      "Content-Type": "application/json",
21
      ApiKey: auth.apiKey,
22
    },
23
    body: JSON.stringify(body),
24
  });
25
  if (!response.ok) {
26
    const text = await response.text();
27
    throw new Error(`${response.status} ${text}`);
28
  }
29
  return await response.json();
30
}
31