stripe icon indicating copy to clipboard operation
stripe copied to clipboard

:moneybag: Stripe API

Results 24 stripe issues
Sort by recently updated
recently updated
newest added

Building on @NorfairKing's PR, these are the types and endpoints we added to get SCA working on our app. Still a work-in-progress. I realized a bit into our work that...

Is there any support for verifying the [`Stripe-Signature`](https://stripe.com/docs/webhooks/signatures) HTTP header for webhooks?

I tried running `stripe (StripeConfig (StripeKey stripeSecretKey) Nothing) getPlans` and got the error: ``` Left (StripeError {errorType = ParseFailure, errorMsg = "parsing Int failed, expected Number, but encountered Null", errorCode...

It seems that the whole [sources API](https://stripe.com/docs/api#sources) is unimplemented. Is that correct?

I am trying to call the stripe charge API. The frontend using the `stripe.js` gives me a token, which needs to be [passed](https://stripe.com/docs/charges) as `source` parameter to the API. Looking...

It looks like the `request` property of the `Event` object that one gets from a webhook has changed in the newer versions of the API, resulting in an error: ```...

This seems to be required for all payments , before September 15 2019. Is there any plan to add this? How can I help?

From the readme it looks like there are intentions to increment the hard-coded API version: > All versioning is hard-coded (for safety) to version 2014-10-07. Stripe API versions specified in...

Is there ever sensitive information in the StripeError value? If not, could there be a ToJSON instance? It'd spare me playing data-relay with the error since I'd just be passing...

I was hoping to use [stripe-mock](https://github.com/stripe/stripe-mock) to test our billing process. Unfortunately, stripe-mock only accepts the latest version of the API (Related to Issue #110). The other issue is that...