Create
Create customer in Shopify store
Create a new customer in your Shopify store.
yaml
type: "io.kestra.plugin.shopify.customers.Create"Examples
Create a customer
yaml
id: shopify_create_customer
namespace: company.team
tasks:
- id: create_customer
type: io.kestra.plugin.shopify.customers.Create
storeDomain: my-store.myshopify.com
accessToken: "{{ secret('SHOPIFY_ACCESS_TOKEN') }}"
email: customer@example.com
firstName: John
lastName: Doe
Properties
accessToken *Requiredstring
Admin API access token
Private app access token for Shopify Admin API
email *Requiredstring
Customer email
Email address for the customer
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
firstName string
First name
Customer's first name
lastName string
Last name
Customer's last name
phone string
Phone number
Customer's phone number
rateLimitDelay string
Default
PT0.5S Format
durationRate limit delay
Delay between API calls to respect rate limits
Outputs
customer Customer
Created customer
The customer that was created in Shopify
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