#iuri_invoice-payment-plans
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1413244526151335997
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello ๐
Are you referring to this feature? https://docs.stripe.com/invoicing/payment-plans
Unfortunately that feature is still in private preview so we cannot offer support for it here
We only support GA'd Stripe functionality on this server
You should reach out to the contact that enrolled you in this feature for more assistance
I understand that the Stripe elements does not support this yet but I want to implement this combo by my end but for that I need a minimum information on the Stripe api response
But... after taking a quick look at the response from this request: https://dashboard.stripe.com/test/logs/req_t1SwYemJKfcF1J,
It looks like each payment shows up in the amounts property
amounts_due: [
{
amount: 1000250,
amount_paid: 0,
amount_remaining: 1000250,
days_until_due: null,
description: "Payment 1",
due_date:
1758988800
,
paid_at: null,
percent: 25,
status: "open",
},
{
amount: 1000250,
amount_paid: 0,
amount_remaining: 1000250,
days_until_due: null,
description: "Payment 2",
due_date:
1761580800
,
paid_at: null,
percent: 25,
status: "open",
},
{
amount: 1000250,
amount_paid: 0,
amount_remaining: 1000250,
days_until_due: null,
description: "Payment 3",
due_date:
1764262800
,
paid_at: null,
percent: 25,
status: "open",
},
{
amount: 1000250,
amount_paid: 0,
amount_remaining: 1000250,
days_until_due: null,
description: "Payment 4",
due_date:
1766854800
,
paid_at: null,
percent: 25,
status: "open",
},
],
I got this from the Invoice ID you gave me
wait, what call do you have there?
I'm using this: https://api.stripe.com/v1/invoices/in_1S1aVhQFozUHdzWVyzOqqaF4
Okay something weird happened here. I can see all the amounts in the first few API responses but not later ones
Again, I recommend you reach out the team handling this private preview because I don't have enough information about how this is supposed to work to provide any help
I already contact the support, here is their answer:
Thank you for your patience as we look into this.
Our team has reviewed your account, and I'm happy to confirm that we've now enabled the invoice payment plans feature for you.
To successfully implement payment plans:
When creating an invoice in the Dashboard, select "Request in Multiple Payments" under the Payment Collection section.
To access payment plan details via the API, you'll need to use the payment_plan property on the Invoice object. This contains information about the configured payment schedule.
The payment plan details won't appear in Stripe Elements as this feature isn't yet supported there.
You will need to continue to push back and request support on the actual Invoice object being returned. I don't have sufficient information on how this integration is supposed to work to provide help
Ok, I will ping the email again =/
Best of luck!
thanks