Edits history of script submission #12262 for ' Bulk Subscribe Profiles (klaviyo)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Klaviyo = {
      apiKey: string;
    };
    /**
     * Bulk Subscribe Profiles
     * Subscribe one or more profiles to email marketing, SMS marketing, or both.
     */
    export async function main(
      auth: Klaviyo,
      revision: string,
      body: {
        data: {
          type: "profile-subscription-bulk-create-job";
          attributes: {
            custom_source?: string;
            profiles: {
              data: {
                type: "profile";
                id?: string;
                attributes: {
                  email?: string;
                  phone_number?: string;
                  subscriptions?: {
                    email?: {
                      marketing: { consent: "SUBSCRIBED"; consented_at?: string };
                    };
                    sms?: {
                      marketing?: { consent: "SUBSCRIBED"; consented_at?: string };
                      transactional?: {
                        consent: "SUBSCRIBED";
                        consented_at?: string;
                      };
                    };
                  };
                  age_gated_date_of_birth?: string;
                };
              }[];
            };
            historical_import?: false | true;
          };
          relationships?: { list?: { data?: { type: "list"; id: string } } };
        };
      },
    ) {
      const url = new URL(
        `https://a.klaviyo.com/api/profile-subscription-bulk-create-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