List customers from Shopify store
Retrieve a list of customers from your Shopify store with optional filtering and pagination.
yaml
type: "io.kestra.plugin.shopify.customers.List"Examples
List all customers
yaml
id: shopify_list_customers
namespace: company.team
tasks:
  - id: list_customers
    type: io.kestra.plugin.shopify.customers.List
    storeDomain: my-store.myshopify.com
    accessToken: "{{ secret('SHOPIFY_ACCESS_TOKEN') }}"
Properties
accessToken *Requiredstring
Admin API access token
Private app access token for Shopify Admin API
storeDomain *Requiredstring
Shopify store domain
The domain of your Shopify store (e.g., 'my-store.myshopify.com')
apiVersion string
 Default 
2024-10API version
Shopify Admin API version to use
fetchType string
 Default 
FETCH Possible Values 
STOREFETCHFETCH_ONENONEFetch type
How to fetch the customers
limit integerstring
Customer limit
Maximum number of customers to return (1-250)
rateLimitDelay string
 Default 
PT0.5S Format 
durationRate limit delay
Delay between API calls to respect rate limits
Outputs
Definitions
io.kestra.plugin.shopify.models.Customer
accepts_marketing boolean
accepts_marketing_updated_at string
 Format 
date-timeadmin_graphql_api_id string
created_at string
 Format 
date-timecurrency string
default_address Customer-CustomerAddress
email string
first_name string
id integer
last_name string
last_order_id integer
last_order_name string
marketing_opt_in_level string
metafields object
multipass_identifier string
note string
orders_count integer
phone string
state string
tax_exempt boolean
tax_exemptions array
 SubType string
total_spent string
updated_at string
 Format 
date-time