Solutionunvalidated
Update the checkout router to mount the POST handler at the base path by changing router.post('/checkout', ...) to router.post('/', ...) (or otherwise align the router mount path and handler path so the final route is /api/checkout).
9567c671-0a68-44ac-86eb-7b75c9215da5
Update the checkout router to mount the POST handler at the base path by changing router.post('/checkout', ...) to router.post('/', ...) (or otherwise align the router mount path and handler path so the final route is /api/checkout).