Edits history of script submission #12261 for ' Bulk Import Profiles (klaviyo)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Klaviyo = {
      apiKey: string;
    };
    /**
     * Bulk Import Profiles
     * Create a bulk profile import job to create or update a batch of profiles.
    
    Accepts up to 10,000 profiles per request. The maximum allowed payload size is 5MB.
    
    To learn more, see our [Bulk Profile Import API guide](https://developers.klaviyo.com/en/docs/use_klaviyos_bulk_profile_import_api).*Rate limits*:Burst: `10/s`Steady: `150/m`
    
     */
    export async function main(
      auth: Klaviyo,
      revision: string,
      body: {
        data: {
          type: "profile-bulk-import-job";
          attributes: {
            profiles: {
              data: {
                type: "profile";
                id?: string;
                attributes: {
                  email?: string;
                  phone_number?: string;
                  external_id?: string;
                  anonymous_id?: string;
                  _kx?: string;
                  first_name?: string;
                  last_name?: string;
                  organization?: string;
                  locale?: string;
                  title?: string;
                  image?: string;
                  location?: {
                    address1?: string;
                    address2?: string;
                    city?: string;
                    country?: string;
                    latitude?: string | number;
                    longitude?: string | number;
                    region?: string;
                    zip?: string;
                    timezone?: string;
                    ip?: string;
                  };
                  properties?: {};
                };
                meta?: {
                  patch_properties?: {
                    append?: {};
                    unappend?: {};
                    unset?: string | string[];
                  };
                };
              }[];
            };
          };
          relationships?: { lists?: { data?: { type: "list"; id: string }[] } };
        };
      },
    ) {
      const url = new URL(`https://a.klaviyo.com/api/profile-bulk-import-jobs`);
    
      const response = await fetch(url, {
        method: "POST",
        headers: {
          revision: revision,
          "Accept": "application/vnd.api+json",
          "Content-Type": "application/vnd.api+json",
          Authorization: "Klaviyo-API-Key " + auth.apiKey,
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 428 days ago