#.xsanti_
1 messages · Page 1 of 1 (latest)
Can you be more specific
okey, i develpement an eccommerce, and when you pruchase a product, you need the posibility to chosse between two options, in the cheakout appears, but the that info is not in stripe, or i cant find it
const session = await stripe.checkout.sessions.create({
mode: "payment",
success_url: "http://localhost:3000/",
line_items: [{ price: req.body.priceId, quantity: 1 }],
billing_address_collection: "required",
phone_number_collection: {
enabled: true,
},
custom_fields: [
{
key: "type",
label: {
type: "custom",
custom: "Tipo",
},
type: "dropdown",
dropdown: {
options: [
{ label: "Speed", value: "Speed" },
{ label: "Control", value: "Control" },
],
},
},
],
});
there is the posibility to see it in te stripe panel, i meen, if you do the cheakout in striipe shows you information about the person, i need to see the custom field IN STRIPE
You're referring to the dashboard?
yes
Not sure. If you provide a payment id I can look around for you
We're not dashboard experts in here
pi_3NvOUFKoLV3DvWnN1051VXAm
i dont now where to ask sorry
the purchase is block but i think it should show...
No it won't
oh xd
If the customer never completed the checkout session, then we won't store the custom fields
ohhhhhh there is a way to do a false purchase?
In test mode yes
okey, thx