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

How to Create Managed account and transfer money from Managed account?

I want to create Custom Accounts in stripe so that I can managed it by my own platform. i have created platform on stripe. I am using stripe.Net for this purpose. I have created several account using this code : var account = new…
2
votes
0 answers

Charging existing card and customer with security code on stripe

We are using Stripe to process payments on a website we are working on Whenever a customer signs up we create a customer on Stripe and save the customer_Id in the DB against against the customer. Also when a customer places an order on the website…
2
votes
2 answers

Stripe 401 - No valid API key provided - C#

I get following error: "The remote server returned an error: (401) Unauthorized" in this line: using (HttpWebResponse httpResponse = request.GetResponse() as HttpWebResponse) {} Here is the complete code: string clientSecretKey =…
Nil
  • 129
  • 4
  • 11
2
votes
1 answer

Store data in Stripe to be sent back as part of web hook data?

I am working for the first time with Stripe. I am using stand alone accounts. I have a platform account also. In my web site a number of people with different Stripe accounts will be opening up campaigns for which money can be donated by various…
jai
  • 391
  • 2
  • 6
  • 14
2
votes
2 answers

Adding multiple cards for a customer stripe.net

Is there a way I can add multiple cards for a customer using stripe.net, I know that we need to retrieve the customer and add a new card using the source object as shown here(https://stripe.com/docs/api#create_card). But with the stripe.net I cant…
2
votes
2 answers

Stripe API trial_end 10 seconds from now, environment independent

I'm testing failing recurrent payments with Stripe Api. To make recurrent payment fail soon after subscription creation, subscription itself should have trial period and trial_end on customer creation should be some time soon or string 'now'. It I…
Igor Loskutov
  • 2,157
  • 2
  • 20
  • 33
2
votes
1 answer

Several deprecated Objects Integrating Stripe API IOS 9

I am trying to get rid of the all deprecated objects when integrating the Stripe API with my Swift 2.0 project. I have replaced the code that was obvious but the 3 lines I need help with are: ABMultiValueRef addressValues =…
JMax
  • 53
  • 6
2
votes
0 answers

Invalid ASCII characters found in API key While Creating Account on Stripe?

I am following Stripe create account document and trying to create an account I am using WebRequest (C#) to do so. but while making a request On Fiddler I am getting an Json Error Response saying. { "error": { "type":…
Vishal Sharma
  • 2,773
  • 2
  • 24
  • 36
2
votes
1 answer

Stripe.Net direct charge

I am trying to directly charge the customer using Stripe. I am using this sample code: var stripeChargeCreateOptions = new StripeChargeCreateOptions(); stripeChargeCreateOptions.Amount = 1000; stripeChargeCreateOptions.Currency =…
2
votes
1 answer

How to Apply a Coupon to a Stripe Customer

I can't find any way to apply the coupon/discount to an existing customer who has a reoccurring payment. I'm using the stripe gem. I went ahead and created the coupon on the Stripe dashboard. I see no mention on how to add a coupon on their API…
thank_you
  • 11,001
  • 19
  • 101
  • 185
2
votes
1 answer

Setting up Stripe Cloud Module in Parse

apologies beforehand for my naïveté. I started learning Obj. C about six weeks ago so I'm very new to iOS development, a lot of things are not very obvious to me still. I am building my second app using Parse. This time it is an e-com app so would…
2
votes
1 answer

Namespace not found for Stripe.net

I'm trying to install a newer version of Stripe.net: https://github.com/jaymedavis/stripe.net Via Nuget, I build the Stripe.dll file I create a new website project I add a reference to Stripe.dll I add a reference to RestSharp.dll using…
Tom Gullen
  • 61,249
  • 84
  • 283
  • 456
2
votes
1 answer

Split payments between two people/accounts?

Is it possible using PayPal or Stripe to split all incoming payments into two accounts? I read in Stripes documentation, about Stripe Connect and sending transfers - just not sure if it's what I need. Me and another guy are partnering up to sell…
Airman
  • 317
  • 2
  • 5
  • 15
1
vote
1 answer

How do I change a Stripe Subscription's billing end cycle date?

I am new to stripe but I will like to update stripe subscription billing current end date with ruby on rails or at least a suggestion on how to go about updating the billing end date.
1
vote
1 answer

Error when trying to get Stripe Token

I hope someone can help. I am new to Stripe. I am trying to allow people to subscribe to a plan (say 5$/month). I have configured the stripe using the dashboard. Also got my publishable key. On the client side I am trying to get the token to send it…
user9647280
1 2
3
8 9