#nerder_unexpected
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/1219728518397563080
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- nerder_subscriptions, 1 hour ago, 33 messages
Can you print the response you're getting from the API and share that here?
{
"id": "price_1OvcsNLAVB3C1lDI9wL5pNWN",
"object": "price",
"active": true,
"billing_scheme": "per_unit",
"created": 1710755583,
"currency": "eur",
"custom_unit_amount": null,
"livemode": false,
"lookup_key": null,
"metadata": {
"migrated": "1"
},
"nickname": null,
"product": "prod_Pl9Alp1ld33HZm",
"recurring": {
"aggregate_usage": null,
"interval": "month",
"interval_count": 1,
"trial_period_days": null,
"usage_type": "licensed"
},
"tax_behavior": "unspecified",
"tiers_mode": null,
"transform_quantity": null,
"type": "recurring",
"unit_amount": 10000,
"unit_amount_decimal": "10000"
}
so it seems is not getting expanded
Yup, can you share the code you're using for this?
const res = await stripe.prices.list(
lasObjId
? {
limit,
starting_after: lasObjId,
expand: ['data.product'],
}
: { limit },
{
stripeAccount,
},
);
there is some pagination involved
try passing expand in a second { }
So
prices.list( {...}, { expand: ... } )
oh no
i've spotted the bug
that's why some product has it and some other dont's
the proble is just with the first batch of prices
const res = await stripe.prices.list(
lasObjId
? {
limit,
starting_after: lasObjId,
expand: ['data.product'],
}
: {
limit,
expand: ['data.product'], //was missing this
},
{
stripeAccount,
},
);
my bad, sorry
ah cool