Shopify Get User by User ID
Retrieves a customer record from Shopify by their numeric customer ID. Returns the full customer object including name, email, addresses and order history metadata.
What it does
- Calls the Shopify Admin REST API to fetch the customer by ID.
- Returns the complete customer data object.
Notes
- Uses the Shopify REST Admin API (version 2025-04).
- Accepts both admin access tokens and Basic auth credentials.
Inputs
| Name | Type | Description |
|---|---|---|
| Customer ID | String | Shopify numeric customer ID |
| Shopify Domain | Credentials | Store subdomain (e.g. my-store for my-store.myshopify.com) |
| Shopify Token | Credentials (sensitive) | Admin API access token |
Outputs
| Name | Type | Description |
|---|---|---|
| Success | Boolean | Whether the customer was found |
| Customer Data | Object | Full Shopify customer object |