为客户stripe.net添加多张卡

时间:2016-05-09 13:02:48

标签: c# stripe.net

有没有办法可以使用stripe.net为客户添加多张卡片,我知道我们需要检索客户并使用源对象添加新卡片,如下所示(https://stripe.com/docs/api#create_card)。但是使用stripe.net我似乎无法想象如何做到这一点,任何指针都会有很大的帮助。

2 个答案:

答案 0 :(得分:1)

想出来。如果这对我这里的任何人都有帮助:

var myCustomer = new StripeCardCreateOptions();       
myCustomer.SourceCard = new SourceCard
{
   Number = txtnumero.Text,
   ExpirationYear = txtyear.Text,
   ExpirationMonth = txtmonth.Text,
   Cvc = txtCVV.Text
 };

 StripeCardService NewStripeCardService = new StripeCardService();
 StripeCard stripeCustomer = NewStripeCardService.Create(**CustomerID**,myCustomer);

答案 1 :(得分:0)

更新以解决Stripe API中的更改。

var myCustomerCardNested = new Stripe.CardCreateNestedOptions();
myCustomerCardNested.Number = cardNumber;
myCustomerCardNested.ExpYear = year;
myCustomerCardNested.ExpMonth = month;
myCustomerCardNested.Cvc = CVC;

var myCustomerCard = new Stripe.CardCreateOptions() { SourceCard = myCustomerCardNested };
stripeCustomerCard = NewStripeCardService.Create(stripeCustomer.Id, myCustomerCard);