//native
type Klaviyo = {
apiKey: string;
};
/**
* Get Profiles
* Get all profiles in an account.
*/
export async function main(
auth: Klaviyo,
additional_fields_profile_: string | undefined,
fields_profile_: string | undefined,
filter: string | undefined,
page_cursor_: string | undefined,
page_size_: string | undefined,
sort:
| "created"
| "-created"
| "email"
| "-email"
| "id"
| "-id"
| "subscriptions.email.marketing.list_suppressions.timestamp"
| "-subscriptions.email.marketing.list_suppressions.timestamp"
| "subscriptions.email.marketing.suppression.timestamp"
| "-subscriptions.email.marketing.suppression.timestamp"
| "updated"
| "-updated"
| undefined,
revision: string,
) {
const url = new URL(`https://a.klaviyo.com/api/profiles`);
for (const [k, v] of [
["additional-fields[profile]", additional_fields_profile_],
["fields[profile]", fields_profile_],
["filter", filter],
["page[cursor]", page_cursor_],
["page[size]", page_size_],
["sort", sort],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
revision: revision,
"Accept": "application/vnd.api+json",
Authorization: "Klaviyo-API-Key " + auth.apiKey,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 428 days ago