#azharwaheed

1 messages · Page 1 of 1 (latest)

burnt bronzeBOT
uneven kelp
#

Hey! Bit of a broad question! Is there a specific use case you're trying to account for?

meager compass
#

yes i want to send through api

uneven kelp
#

could you please share more details ?

meager compass
#

i used stripe in unity and i want to send detail on stripe dasboard like product deatil quantity

#

@uneven kelp ?

uneven kelp
#

I'm sorry, I still don't understand what you want to acheive ?

#

Stripe Dashboard is for previwing data and manage your Stripe Account

meager compass
#

@uneven kelp i want to make check out summry

#

public void checkout()
{
StripeConfiguration.ApiKey = privateKey;

    var options = new SessionCreateOptions
    {
        SuccessUrl = "https://example.com/success",
        LineItems = new List<SessionLineItemOptions>
   {
    new SessionLineItemOptions
   {
     Price = "price_1NaGCJDJMBBSt3MKvYJjJaAD",
     Quantity = 2,
     },
     },
        Mode = "payment",
    };
    var service = new SessionService();
    service.Create(options);


}
#

these code

uneven kelp
#

You can need to implement that in your integration

#

I'm not sure I understand your need, please share more details, what is the need? where you want to implement it?

meager compass
#

we can find transaction ID

uneven kelp
#

I still don't nuderstand your need sorry. You need to provide more details.