//native
type Kustomer = {
apiKey: string;
};
/**
* Create tracking identity
* Identifies a user.
The following role is required for this endpoint: org.tracking
*/
export async function main(
auth: Kustomer,
body: {
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?: {};
},
) {
const url = new URL(`https://api.kustomerapp.com/v1/tracking/identity`);
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