Pull Data From Stripe Payments To Bubble

I currently have the plug-in stripe.js 2 installed. I have a bills submission interface on bubble.io, once the bill information has been filled out the user can submit it and it will be sent out to customers through stripe to be paid. The customers are then required to complete their payment through stripe. I would like to automatically retrieve the data of the amount that has been paid by the customers to bubble.io. I would then like to display the total sum of the amount that has been paid by the customers.

I want the customers to be grouped based on their description meaning, if there were three people, one that paid $5 and had a description that said “Group A”, another that paid $10 and has a description that said “Group B”, with the last person having a paid amount of $15 and a description that said “Group A” then on bubble.io Group A would say $20 and Group B would say $10.

The search term you need for the forum is Stripe webhook

Use Stripe docs to identify the webhook event triggered when a bill is paid, and set it up in Stripe to send the webhook to your Bubble backend and do whatever you wish with the webhook data (e.g take the payment ID and find/create the relevant payment in your DB)

after looking into it more I was able to see that the issue is because my bubble.io plan is still on the free version. Which means bubble.io does not create an API for me when a request is made.