Create a Payment Intent
payments.ts
import { stripe } from './';
/**
* Create a Payment Intent with a specific amount
*/
export async function createPaymentIntent(amount: number) {
const paymentIntent = await stripe.paymentIntents.create({
amount,
currency: 'usd',
// receipt_email: 'hello@wohnverwaltung.com',
});
paymentIntent.status
return paymentIntent;
}
Payments Endpoint
api.ts
import { createPaymentIntent } from './payments';
/**
* Payment Intents
*/
app.post(
'/payments',
runAsync(async ({ body }: Request, res: Response) => {
res.send(
await createPaymentIntent(body.amount)
);
})
);