I'm currently using the Stripe API to get a list of PaymentIntents. The intents are created from a mix of subscriptions and one-off payments from a Stripe Link.
The API call using the typescript client looks like:
paymentsPage = await stripeClient.paymentIntents.list({
starting_after,
expand: [
"data.invoice",
"data.invoice.subscription",
"data.latest_charge",
"data.line_items",
"data.payment_page",
"data.transfer_data",
// Doesn't work, but seems to be what the Stripe web-app uses
// "data.line_item_group",
],
});
I'm having trouble getting a price_ or plan_ ID for the PaymentIntents created from the Stripe Link.
- Invoice is null
- I can't seem to get line_items anywhere
- The web-app (as seen from network requests) relies on a line_item_group field, but I can't seem to get that.
Any thoughts on where I can get that information?
A couple of things to note here.
Firstly, there aren't any attributes on the Payment Intent object that correspond with
line_items
,line_item_group
, orpayment_page
, so you need to remove those from theexpand
parameter in your request.Secondly, Stripe only generates an Invoice for a payment if the payment is either:
It sounds like you're using Payment Links, which are not part of an Invoice workflow, so it is expected that the
invoice
attribute on your Payment Intent object isnull
in some cases.Lastly,
line_item_group
is not used in any material way by Stripe users. That seems to be internal data that only Stripe uses, so I'm not sure how your web app could rely on it.