List customers in Stripe
📜 This job is an official example from OpenFn.
Metadata​
- Name: List customers in Stripe
- Adaptor:
@openfn/language-stripe
- Adaptor Version:
latest
- Created date unknown
- Updated date unknown
- Score: 100 (an indicator of how useful this job may be)
Key Functions​
list
Expression​
// List customers in Stripe
list('customers').then(state => {
state.customers = state.data.data;
return state;
});