0

Get terms of service

by
Published Dec 20, 2024

Get the text of the terms of service and see whether the advertiser has accepted the terms of service.

Script pinterest Verified

The script

Submitted by hugo697 Bun
Verified 536 days ago
1
//native
2
type Pinterest = {
3
  token: string;
4
};
5
/**
6
 * Get terms of service
7
 * Get the text of the terms of service and see whether the advertiser has accepted the terms of service.
8
 */
9
export async function main(
10
  auth: Pinterest,
11
  ad_account_id: string,
12
  include_html: string | undefined,
13
  tos_type: string | undefined,
14
) {
15
  const url = new URL(
16
    `https://api.pinterest.com/v5/ad_accounts/${ad_account_id}/terms_of_service`,
17
  );
18
  for (const [k, v] of [
19
    ["include_html", include_html],
20
    ["tos_type", tos_type],
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.token,
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.json();
38
}
39