Edits history of script submission #16517 for ' Create tracking identity and track event (kustomer)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Kustomer = {
      apiKey: string;
    };
    /**
     * Create tracking identity and track event
     * Identifies a user and tracks an event with a single API call.
    
    The following role is required for this endpoint: org.tracking
     */
    export async function main(
      auth: Kustomer,
      body: {
        identity: {
          remember?: false | true;
          trackingId?: string;
          sessionId?: string;
          name?: string;
          company?: string;
          externalId?: string;
          username?: string;
          signedUpAt?: string;
          birthdayAt?: string;
          gender?: "m" | "f";
          locale?: string;
          timeZone?: string;
          email?: string;
          phone?: string;
          location?: {
            type?: "home" | "work" | "other";
            name?: string;
            address?: string;
            address2?: string;
            address3?: string;
            latitude?: number;
            longitude?: number;
            countryCode?: string;
            countryName?: string;
            regionCode?: string;
            regionName?: string;
            cityName?: string;
            zipCode?: string;
            areaCode?: string;
          };
          tags?: string[];
          custom?: {};
        };
        event: { trackingId?: string; sessionId?: string; name: string; meta?: {} };
      },
    ) {
      const url = new URL(`https://api.kustomerapp.com/v1/tracking/identityEvent`);
    
      const response = await fetch(url, {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Authorization: "Bearer " + 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 235 days ago