You can get your payment data from Stripe quickly. Take a look at this blog post for the details.
Create a connection following this instruction.
Note that your Stripe account needs to have the Administrator role in allowing Exploratory to read your Stripe data.
Set these parameters.
To filter Stripe data, you can pass query string as field=value
fashion. For example, if you want to filter charges
data whose currency is jpy, you can set currency=jpy
in this field. You can also set multiple conditions by concatenating condition with &
. Let's say you want to fetch charges data whose currency is jpy and amount greater than 100,000, you can set following as your query string.
currency=jpy&amount[gt]=100000
In here [gt]
is called child argument and gt
means greater than. As you'd guess there are other operator available for child argument per column. For example, as for amount column, following child arguments are available.
Here is the list of available child arguments per resource/column
all
, alipay_account
, bank_account
, bitcoin_receiver
, or card
)Click Preview button to see the data back from Stripe. If it looks ok, then you can click 'Import' to import the data into Exploratory.