//native
type Klaviyo = {
apiKey: string;
};
/**
* Bulk Create Coupon Codes
* Create a coupon-code-bulk-create-job to bulk create a list of coupon codes.
Max number of coupon codes per job we allow for is 1000.
Max number of jobs queued at once we allow for is 100.*Rate limits*:Burst: `75/s`Steady: `700/m`
*/
export async function main(
auth: Klaviyo,
revision: string,
body: {
data: {
type: "coupon-code-bulk-create-job";
attributes: {
"coupon-codes": {
data: {
type: "coupon-code";
attributes: { unique_code: string; expires_at?: string };
relationships?: {
coupon?: { data?: { type: "coupon"; id: string } };
};
}[];
};
};
};
},
) {
const url = new URL(`https://a.klaviyo.com/api/coupon-code-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