#azharwaheed
1 messages · Page 1 of 1 (latest)
Hey! Bit of a broad question! Is there a specific use case you're trying to account for?
yes i want to send through api
could you please share more details ?
i used stripe in unity and i want to send detail on stripe dasboard like product deatil quantity
@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
@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
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?
we can find transaction ID
I still don't nuderstand your need sorry. You need to provide more details.