tailwind-nextjs-blog/pages/api/klaviyo.ts

38 lines
1.2 KiB
TypeScript
Raw Permalink Normal View History

2022-10-17 23:37:01 +08:00
import { NextApiRequest, NextApiResponse } from 'next';
2022-07-17 21:40:41 +08:00
/* eslint-disable import/no-anonymous-default-export */
export default async (req: NextApiRequest, res: NextApiResponse) => {
2022-10-17 23:37:01 +08:00
const { email } = req.body;
2022-07-17 21:40:41 +08:00
if (!email) {
2022-10-17 23:37:01 +08:00
return res.status(400).json({ error: 'Email is required' });
2022-07-17 21:40:41 +08:00
}
try {
2022-10-17 23:37:01 +08:00
const API_KEY = process.env.KLAVIYO_API_KEY;
const LIST_ID = process.env.KLAVIYO_LIST_ID;
2022-07-17 21:40:41 +08:00
const response = await fetch(
`https://a.klaviyo.com/api/v2/list/${LIST_ID}/subscribe?api_key=${API_KEY}`,
{
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
// You can add additional params here i.e. SMS, etc.
// https://developers.klaviyo.com/en/reference/subscribe
body: JSON.stringify({
profiles: [{ email: email }],
}),
}
2022-10-17 23:37:01 +08:00
);
2022-07-17 21:40:41 +08:00
if (response.status >= 400) {
return res.status(400).json({
error: `There was an error subscribing to the list.`,
2022-10-17 23:37:01 +08:00
});
2022-07-17 21:40:41 +08:00
}
2022-10-17 23:37:01 +08:00
return res.status(201).json({ error: '' });
2022-07-17 21:40:41 +08:00
} catch (error) {
2022-10-17 23:37:01 +08:00
return res.status(500).json({ error: error.message || error.toString() });
2022-07-17 21:40:41 +08:00
}
2022-10-17 23:37:01 +08:00
};