Skip to content

Stripe Integration Part 2 - Listing Customers

Original guide · All levels

The process of retreiving customers from Stripe is a relatively simple process Let us start with the server Action, list_customers The process is very simple Create an API action as below, URL is: htt

The process of retreiving customers from Stripe is a relatively simple process

Section titled “The process of retreiving customers from Stripe is a relatively simple process”

Let us start with the server Action, list_customers

The process is very simple

Create an API action as below, URL is: https://api.stripe.com/v1/customers

Add the authorisation header as previously known

An additional query parameter ‘limit’ can be added to limit the responses

Section titled “An additional query parameter ‘limit’ can be added to limit the responses”

Over to App connect,
Create a server Connection to the server action

An additional query parameter ‘limit’ can be added to limit the responses

You can then create a bootstrap table from the API data source. Choose whichever fields you want from the API Customer object

Running this displays all the customers in the Customer Object as below

Section titled “Running this displays all the customers in the Customer Object as below”
Section titled “This is perfect as a link to retrieving individual customer Object records (next)”

Part 3