| 1234567891011121314151617181920212223 |
- import { NextApiRequest, NextApiResponse } from 'next'
- import apiWrapper from '@/lib/api/apiWrapper'
- export default (req: NextApiRequest, res: NextApiResponse) => apiWrapper(req, res, handler)
- async function handler(req: NextApiRequest, res: NextApiResponse) {
- const { method } = req
- switch (method) {
- case 'POST':
- return handlePost(req, res)
- default:
- res.setHeader('Allow', ['POST'])
- res.status(405).json({ data: null, error: { message: `Method ${method} Not Allowed` } })
- }
- }
- const handlePost = async (_req: NextApiRequest, res: NextApiResponse) => {
- // Platform specific endpoint
- const response = {}
- return res.status(200).json(response)
- }
|