curl --location --request POST '/api/stripe/checkout-session' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 1,
"currency": "usd",
"success_url": "string",
"cancel_url": "string",
"customer_email": "string",
"metadata": {},
"description": "string"
}'{}