No release in over a year
Loads data from Stripe.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 13.0.3

Runtime

>= 5.32.1
 Project Readme

embulk-input-stripe

Embulk input plugin for Stripe.

Overview

  • Plugin type: input
  • Resume supported: no
  • Cleanup supported: no
  • Guess supported: no

Configuration

  • api_key: Stripe API key
  • resource_type: Stripe object to retrieve. Currently supports customers, invoices, subscriptions, charges.
  • fields: Fields to retrieve from Stripe. Each field should contain the below elements.
    • name: Name of the ID.
    • type: Type of the field.

Example Config

in:
  type: stripe
  api_key: STRIPE_SECRET_API_KEY
  resource_type: customers
  fields:
    - { name: id, type: string }
    - { name: created, type: timestamp }
    - { name: email, type: string }
    - { name: name, type: string }

out:
  type: stdout

Please see the sample_configs directory for more examples.

Building the gem

bundle exec rake

The gem will be generated under pkg/.