#hari_86506
1 messages · Page 1 of 1 (latest)
Yep, we have minimum charge amounts: https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts
Please tell me where i am fix in code.. Please sent me any sample code
i am using SessionLineItemOptions
The issue is not with your code
The problem is the sum of your line_items is not greater than 0.50 INR
var SessionLineItem = new SessionLineItemOptions()
{
PriceData = new SessionLineItemPriceDataOptions
{
UnitAmount = (long)1,
//UnitAmountDecimal = Convert.ToDecimal(1),
Currency = "inr",
ProductData = new SessionLineItemPriceDataProductDataOptions
{
Name = "Invoice",
//Description = "23-24/Inv/202"
}
},
Quantity = (long)1,
};
This is my ode
This is my code