#nerder_unexpected

1 messages ¡ Page 1 of 1 (latest)

visual marshBOT
#

👋 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.

thorn yokeBOT
#

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.

zinc sluice
#

Can you print the response you're getting from the API and share that here?

orchid cave
#
{
  "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

zinc sluice
#

Yup, can you share the code you're using for this?

orchid cave
#
    const res = await stripe.prices.list(
      lasObjId
        ? {
            limit,
            starting_after: lasObjId,
            expand: ['data.product'],
          }
        : { limit },
      {
        stripeAccount,
      },
    );
#

there is some pagination involved

zinc sluice
#

try passing expand in a second { }

So

prices.list( {...}, { expand: ... } )

orchid cave
#

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

zinc sluice
#

ah cool