Questions tagged [stripe.net]

Use this tag for programming questions about Stripe.net, the Stripe payments library for the .NET Framework. Questions should also contain the tag [stripe-payments] and, if applicable, a tag for the programming language in question. Do not use this tag for questions about Stripe which do not involve this specific library.

Stripe.net is a library for the .NET Framework.

You can find Stripe.net on GitHub.

License: Apache License Version 2.0.

133 questions
0
votes
1 answer

Stripe.net - Try to charge on behalf

I try to use Stripe to charge on behalf of someone. I did the connect part with success, but I tried to create a token/charge after that and it doesn't work. Some info on parameters used in the code: "acct_158fBBAOizDDfp9B" - Get from the Connect…
Jonathan Anctil
  • 1,025
  • 3
  • 20
  • 44
0
votes
1 answer

what is the equivalent converted vb.net code for following c# code

I have tried various code converters but it is giving me error while running the application. myCustomer.Card = new StripeCreditCardOptions() { TokenId = token };
0
votes
2 answers

How to Update Account in StripeApi using C#?

I am trying to update Account in Stripe Api using Stripe.netlibrary ,using StripeAccountService and storing it in StripeAccountclass which i made by myself to store the result returned by API : var accountService = new…
lokopi
  • 53
  • 1
  • 7
0
votes
1 answer

Creating Stripe customer from Stripe Token using .Net client library & Stripe.js

I have a screen in my ASP.NET MVC web application in which I ask the user for their credit card information. They type it in. Adhering to PCI guidelines, I am using Stripe.js to send this credit card information to stripe and get back a stripe…
Water Cooler v2
  • 32,724
  • 54
  • 166
  • 336
0
votes
1 answer

"No such customer" when charging with Stripe

I was testing around with Stripe API and I couldn't get this basic 'marketplace' scenario to work. The scenario is a buyer buys from a seller, and the application has a fee. My setup: # Seller has already connected their account to the application…
rublex
  • 1,893
  • 5
  • 27
  • 45
0
votes
1 answer

Get the list of STRIPE customer Payments

I've a list of customers on Stripe Account. Now the customers have done the monthly payments also, I want the list of the payments of particular customer. I've used this : StripeCustomerService stripeCustomerInfo = new StripeCustomerService(); var…
Hemant Bhagat
  • 173
  • 11
0
votes
1 answer

How to set up Stripe Plan to bill quarterly using Stripe.Net

I am attempting to set up a plan using Stripe.Net that bills quarterly, but I am afraid that it may not be possible out of the box. Here is my code so far, taken almost directly from the Stripe.Net setup guide: var myPlan = new…
Shmaniel
  • 45
  • 5
0
votes
1 answer

Stripe.net issue changing customers plan

I am looking for somebody to point me in the correct direction to properly update a subscription plan using Stripe.net. I need to allow customers to change plans. Its been awhile since I used this library and the way I had done it in the past has…
Mike
  • 123
  • 8
0
votes
2 answers

Stripe API - BalanceTransaction List

According to Stripes documentation here if you add a Stripe object ID as the source when getting a list of balance transactions you should get all transactions related to that ID. (e.g. filtering by a charge ID will return all charge and refund…
INNVTV
  • 3,155
  • 7
  • 37
  • 71
0
votes
1 answer

Custom days to file Customer.subscription.trial_will_end Event from stripe

I want to know that how I can setup stripe to add custom days that subscription.trial_will_end fire as it fires on 3 days before trial end. so How I can setup it to before 1 day when trial ends. Thanks Dalvir
Dalvir Saini
  • 380
  • 2
  • 11
  • 30
0
votes
2 answers

Validate credit card using Stripe

I am coding a MVC 5 internet application and am using Stripe.net. Here is the code that is used to validate a credit card using Javascript: