//native
type Klaviyo = {
apiKey: string;
};
/**
* Get Coupons
* Get all coupons in an account.
To learn more, see our [Coupons API guide](https://developers.klaviyo.com/en/docs/use_klaviyos_coupons_api).*Rate limits*:Burst: `75/s`Steady: `700/m`
*/
export async function main(
auth: Klaviyo,
fields_coupon_: string | undefined,
page_cursor_: string | undefined,
revision: string,
) {
const url = new URL(`https://a.klaviyo.com/api/coupons`);
for (const [k, v] of [
["fields[coupon]", fields_coupon_],
["page[cursor]", page_cursor_],
]) {
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