curl --location --request POST '/api/stripe/payment-intent' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 1,
"currency": "usd",
"payment_method_types": [
"card"
],
"customer_email": "string",
"description": "string",
"metadata": {},
"automatic_payment_methods": true
}'{}