0

List report stats

by
Published Dec 20, 2024

List aggregated numbers of issues for a catalog owned by the "operation user_account". - By default, the "operation user_account" is the token user_account. Optional: Business Access: Specify an ad_account_id (obtained via List ad accounts) to use the owner of that ad_account as the "operation user_account". In order to do this, the token user_account must have one of the following Business Access roles on the ad_account: Owner, Admin, Catalogs Manager.

Script pinterest Verified

The script

Submitted by hugo697 Bun
Verified 536 days ago
1
//native
2
type Pinterest = {
3
  token: string;
4
};
5
/**
6
 * List report stats
7
 * List aggregated numbers of issues for a catalog owned by the "operation user_account".
8
- By default, the "operation user_account" is the token user_account.
9

10
Optional: Business Access: Specify an ad_account_id (obtained via List ad accounts) to use the owner of that ad_account as the "operation user_account". In order to do this, the token user_account must have one of the following Business Access roles on the ad_account: Owner, Admin, Catalogs Manager.
11
 */
12
export async function main(
13
  auth: Pinterest,
14
  ad_account_id: string | undefined,
15
  page_size: string | undefined,
16
  bookmark: string | undefined,
17
  parameters: any,
18
) {
19
  const url = new URL(`https://api.pinterest.com/v5/catalogs/reports/stats`);
20
  for (const [k, v] of [
21
    ["ad_account_id", ad_account_id],
22
    ["page_size", page_size],
23
    ["bookmark", bookmark],
24
  ]) {
25
    if (v !== undefined && v !== "" && k !== undefined) {
26
      url.searchParams.append(k, v);
27
    }
28
  }
29
  encodeParams({ parameters }).forEach((v, k) => {
30
    if (v !== undefined && v !== "") {
31
      url.searchParams.append(k, v);
32
    }
33
  });
34
  const response = await fetch(url, {
35
    method: "GET",
36
    headers: {
37
      Authorization: "Bearer " + auth.token,
38
    },
39
    body: undefined,
40
  });
41
  if (!response.ok) {
42
    const text = await response.text();
43
    throw new Error(`${response.status} ${text}`);
44
  }
45
  return await response.json();
46
}
47

48
function encodeParams(o: any) {
49
  function iter(o: any, path: string) {
50
    if (Array.isArray(o)) {
51
      o.forEach(function (a) {
52
        iter(a, path + "[]");
53
      });
54
      return;
55
    }
56
    if (o !== null && typeof o === "object") {
57
      Object.keys(o).forEach(function (k) {
58
        iter(o[k], path + "[" + k + "]");
59
      });
60
      return;
61
    }
62
    data.push(path + "=" + o);
63
  }
64
  const data: string[] = [];
65
  Object.keys(o).forEach(function (k) {
66
    if (o[k] !== undefined) {
67
      iter(o[k], k);
68
    }
69
  });
70
  return new URLSearchParams(data.join("&"));
71
}
72