Edits history of script submission #11249 for ' Download advertiser entities in bulk (pinterest)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Pinterest = {
      token: string;
    };
    /**
     * Download advertiser entities in bulk
     * Get the status of a bulk request by request_id, along with a download URL that will allow you to download the
    new or updated entity data (campaigns, ad groups, product groups, ads, or keywords).
     */
    export async function main(
      auth: Pinterest,
      ad_account_id: string,
      bulk_request_id: string,
      include_details: string | undefined,
    ) {
      const url = new URL(
        `https://api.pinterest.com/v5/ad_accounts/${ad_account_id}/bulk/${bulk_request_id}`,
      );
      for (const [k, v] of [["include_details", include_details]]) {
        if (v !== undefined && v !== "" && k !== undefined) {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + auth.token,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 536 days ago