Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kayıtlı Kartı Kullanma #137

Open
recepseyis opened this issue Dec 30, 2023 · 1 comment
Open

Kayıtlı Kartı Kullanma #137

recepseyis opened this issue Dec 30, 2023 · 1 comment

Comments

@recepseyis
Copy link

Çok araştırdım ama bulamadım kartı kaydedebiliyorum ve listeliyorum ama satış esnasında kayıtlı kartı nasıl kullanacağım

@yzylmz
Copy link

yzylmz commented Feb 26, 2024

Çok araştırdım ama bulamadım kartı kaydedebiliyorum ve listeliyorum ama satış esnasında kayıtlı kartı nasıl kullanacağım

CreatePaymentRequest request = new CreatePaymentRequest();
 request.Locale = Locale.TR.ToString();
 request.Price = price;
 request.PaidPrice = price;
 request.Currency = Iyzipay.Model.Currency.TRY.ToString();
 request.Installment = 1;
 request.BasketId = Guid.NewGuid().ToString();
 request.PaymentChannel = PaymentChannel.WEB.ToString();
 request.PaymentGroup = PaymentGroup.PRODUCT.ToString();

 Iyzipay.Model.PaymentCard paymentCard = new Iyzipay.Model.PaymentCard();
 paymentCard.CardUserKey = cardUserKey;
 paymentCard.CardToken = cardToken;
 request.PaymentCard = paymentCard;

kayıtlı karta ait carduserkey ve card token değerlerini paymentCard nesnesine set ederek kullanabilirsin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants