#zleb
1 messages · Page 1 of 1 (latest)
You can get the receipt number through the charge object https://stripe.com/docs/api/charges/object?lang=node#charge_object-receipt_number
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
it's showing null on my end even though there is a successful payment...the card details are there
"This attribute will be null until a receipt has been sent."
does it mean I need to send manually first in my dashboard?
i access charges object right after confirming payment intent
Do you have the charge ID?
ch_3N3ZySHxtLfwk5uw1AxSXpDr
when i viewed receipt in the dashboard, it's the only time the api returned a value..
so it has a value now :\ should i create a new one?
Have you sent a receipt email
yes but only in payment intent creation
stripe.confirmPayment({
elements,
redirect: 'if_required'
})
just this one
no more confirmParams
Did you specify a customer or receipt_email when creating a paymentIntent ?
Hi! I'm taking over this thread.