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
35
votes
7 answers

Non-English texts in Stripe possible?

Successfully integrating Stripe into my online shop, I completely failed to get information on whether/how to configure Stripe to return error messages in German instead of English. So my question is: Is there a way to have localized error messages…
30
votes
5 answers

Stripe Webhook events Renewal of subscription

I am using STRIPE for credit card payments in my Asp.net Application. Application have an monthly subscription plan. First time when user subscribe the webhook event 'customer.subscription.created' fired. my question is what happened which events…
Saad
  • 1,312
  • 5
  • 17
  • 40
24
votes
4 answers

Xamarin DependencyService: System.MissingMethodException: Default constructor not found for [Interface]

I am receiving this error when using the Dependency Service on a Xamarin.Forms PCL. I have seen answers to this error that involve iOS and the Linker. However, I am running this on Android and the Linker is off. Debug mode as well. The constructor…
18
votes
12 answers

Stripe fee calculation

Regarding Stripe fee calculation, is there is any way to get the Stripe fee according to the amount provided. We have to implement this in such away that, we have to pay x amount to one dealer and y amount to another. 1st case: Let say we have $100…
sher bahadur
  • 409
  • 1
  • 5
  • 7
16
votes
3 answers

How do you retrieve inactive (cancelled) subscriptions from Stripe

I want to confirm that a customer subscription has been cancelled. The Stripe API documentation only refers to returning "active" subscription. How can I get a listing of all the subscriptions? Listing subscriptions You can see a list of the…
Barry MSIH
  • 3,525
  • 5
  • 32
  • 53
16
votes
5 answers

Send Stripe Notification when Credit Card is about to expire

Is there a way in Stripe to automatically send an email to a customer when their credit card is about to expire?
Cotega
  • 339
  • 1
  • 2
  • 8
13
votes
2 answers

Ngrok not passing my post request on to localhost

I'm trying to set up a webhook for Stripe and I've created a controller, according to the Stripe doc , to do it in ASP.Net MVC running in a virtual machine (maybe that changes things?). I've been testing the action in the controller to see if I can…
chuckd
  • 13,460
  • 29
  • 152
  • 331
8
votes
4 answers

Stripe redirect_uri will not work

I have connected stripe standalone accounts to platform accounts before. In fact I did it a week back and it worked perfectly. But somehow this time it simply will not work even though I am following exactly the same procedure. I have set the…
jai
  • 391
  • 2
  • 6
  • 14
8
votes
1 answer

Create Token With Apple Pay Without Payment

I have two questions: Is there a way to create an STPToken using Apple Pay without a payment? In my iOS app, the customer either enters in their payment info or decides to use Apple Pay when registering. When the customer decides to make a…
Josh Gafni
  • 2,831
  • 2
  • 19
  • 32
7
votes
3 answers

Stripe webhook signature failed - Stripe.net

Im trying to implement a stripe webhook using the the c# library Stripe.net by Jayme Davis. i have set up the test endpoint in the stripe dashboard and generated the secret. The endpoint is being hit fine, and will generate the StripeEvent using the…
7
votes
2 answers

Stripe cancel a pre-authorization

I am using Stripe in a 2 part payment process. i.e. Pre-authorize the card calling the Charge object with capture = false Do some database work Charge the card using charge capture Do, or should I attempt to cancel this pre-authorization, using…
Tony B
  • 93
  • 1
  • 3
5
votes
2 answers

C# : set default payment method in stripe

I am new in stripe, how can we set default payment method in stripe. And can we pass cardId/sourceId to charge customer along with customerId. Code:- private static async Task ChargeCustomer(string customerId) { return await…
5
votes
1 answer

What identification document does the field legal_entity.personal_id_number designate?

I am trying to create a managed account for my user on Stripe Connect. I have been receiving different requests for different documents in the verification.fields_needed one at a time. I supply the one it says they need and then I get a new value in…
Water Cooler v2
  • 32,724
  • 54
  • 166
  • 336
5
votes
1 answer

How to send Stripe's secret key when making a raw HTTP POST request to Stripe

Because the Stripe .NET nuget package / library is built on v1 of the Stripe API, and since then a few things have changed, I am making a raw HTTP request to a Stripe endpoint to add a new credit card to an existing customer's account. My question…
Water Cooler v2
  • 32,724
  • 54
  • 166
  • 336
4
votes
1 answer

Stripe.net Method not found: 'Void Stripe.StripeCustomerCreateOptions.set_Card(Stripe.StripeCreditCardOptions)'

I'm using latest Stripe.net version await SubscriptionsFacade.SubscribeUserAsync(user, planId, taxPercent: taxPercent); raises [MissingMethodException: Method not found: 'Void…
user299709
  • 4,922
  • 10
  • 56
  • 88
1
2 3
8 9