Shopify Create Customer With Address GraphQL
This action creates a Shopify customer with a default shipping address using the Admin GraphQL API.
Inputs
Name | Type | Description |
---|---|---|
Access Token | SensitiveString | Shopify Admin API token. |
Shopify Domain | String | Shopify store subdomain (e.g., my-shop). |
Customer Email | String | Email address of the customer |
First Name | Optional String | First name of the customer |
Last Name | Optional String | Last name of the customer |
Shipping Address | Optional Object | Customer's default shipping address object. |
Shipping Address Field Format:
{
"address1": "123 Main St",
"city": "Montreal",
"province": "QC",
"country": "Canada",
"zip": "H2Y 1H2"
}
Outputs
Name | Type | Description |
---|---|---|
Success | Boolean | Indicates if the operation was successful |
Customer ID | String | ID of the newly created customer |
Customer | Object | The newly created customer object |
References
Updated 1 day ago