stripity_stripe v1.6.0 API Reference

Modules

A HTTP client for Stripe. This module contains the Application that you can use to perform transactions on stripe API. ### Configuring By default the STRIPE_SECRET_KEY environment variable is used to find your API key for Stripe. You can also manually set your API key by configuring the :stripity_stripe application. You can see the default configuration in the default_config/0 private function at the bottom of this file. The value for platform client id is optional

Functions for working with accounts at Stripe. Through this API you can

Functions for working with cards at Stripe. Through this API you can

Functions for working with charges at Stripe. Through this API you can

Helper module for Connect related features at Stripe. Through this API you can:

  • retrieve the oauth access token or the full response, using the code received from the oauth flow return

Handles coupons to the Stripe API. (API ref: https://stripe.com/docs/api#coupons)

Main API for working with Customers at Stripe. Through this API you can: -change subscriptions -create invoices -create customers -delete single customer -delete all customer -count customers

Main API for working with Events at Stripe. Through this API you can: -list/search events (last 30 days guaranteed to be available) -retrieve event from id -count number of events stored currently on stripe

The API for tacking on charges to subscriptions. See Stripe docs for more details

Main API for working with Invoices at Stripe. Through this API you can: -create -update -retrieve single -list (paged, 100 max/page) -count

Basic List, Create, Delete API for Plans

Main API for working with Subscriptions at Stripe. Through this API you can:

  • create
  • change
  • retrieve
  • cancel
  • cancel_all
  • list all
  • count all

API for working with Tokens at Stripe. Through this API you can: -create -retrieve tokens for both credit card and bank account allowing you to use them instead of a credit card number in various operations

Stripe URI helpers to encode nested dictionaries as query_params

Creates an event from webhook’s payload if signature is valid

Exceptions