Overview of the concepts related to customers purchasing products offered in your Composable Commerce Project.
Customer uniqueness
Email case-insensitivity
Email@example.com
...- Authenticating with
email@example.com
orEMAIL@example.com
succeeds - Sign-up attempts with
email@example.com
orEMAIL@example.com
fail unless Stores are in use - Generating a password reset token with
email@example.com
orEMAIL@example.com
succeeds
Global versus Store-specific Customers
In Composable Commerce, Customers can either be global or Store-specific:
-
Global Customers are unique to a Project. A Customer is considered global when the Customer
stores
field is empty. Since global Customers are not assigned to any particular Store, they have broad access to all Stores within the Project. A global Customer cannot create an account in a Store using the same email address.
Example
For example, if you do the following:
- Register
email@example.com
as a global Customer. - Try to register
email@example.com
in a specific Store.
The second registration fails because as a global Customer the same email address cannot be used to create an account in a specific Store.
email@example.com
in a Store in a Project, then attempt to register email@example.com
globally, the second attempt to register fails.We recommend that you decide whether or not to create Customers on a per-store basis or globally as a part of your initial Project configuration.
Due to these differences, two different authorization flows are used depending on the type of Customer:
Customer authentication (sign-in)
anonymousCart
, a single anonymous Cart can be assigned. With anonymousId
, all Carts, Orders, ShoppingLists, and Payments with the same anonymousId
can be assigned to the Customer. If both anonymousCart
and anonymousId
are defined, the anonymous Cart must have the same anonymousId
assigned.Customers can have one or more Carts assigned from an earlier session. Therefore, Cart assignment can happen in one of two ways:
- If the Customer does not have a Cart yet, or the value of AnonymousCartSignInMode is set to
UseAsNewActiveCustomerCart
, then the anonymous Cart becomes the Customer's Cart. - If the Customer already has one or more Carts and the value of AnonymousCartSignInMode is set to
MergeWithExistingCustomerCart
, then the content of the anonymous Cart will be copied to the Customer's least-recently modified active Cart. This process is referred to as Cart merge and results in a specific set of changes for both Carts.
Cart merge during sign-in
- Cart merge during sign-in is not possible for Customers authenticating through an external OAuth server.
- For Cart merge, both Carts must have the same
currency
andstore
.
anonymousCartSignInMode
field on the CustomerSignin to UseAsNewActiveCustomerCart
.cartState
updated to Merged
. Although this CartState prevents any further modifications to the Cart, you can use the Cart to check for any items that could not be merged.Merge
- the items are identical, including their
key
if present, and - the Customer's Cart has a
shippingAddress
set.
quantity
of the merged item is taken from the Line Item or Custom Line Item with the higher quantity of both.
Additionally, the itemShippingAddresses
from both items are merged on the resulting Customer's Cart.
For Carts with Multiple
ShippingMode, the shipping
arrays from both carts are merged. A Shipping
entry is only retained if its shippingKey
is still referenced by a Line Item.Copy
- they are identical, but differ in their
priceMode
.
Drop
- their
key
is identical, but they differ in other fields, likesku
, orpriceMode
, or - the Customer's Cart does not have a
shippingAddress
set.
Customer email verification
To verify a Customer's email, do the following:
- Send an email token embedded in a link to the Customer.
- For global Customers, use the Create email token for Customer endpoint.
- For Store-specific Customers, use Create email token for Customer in Store endpoint.
- When the Customer clicks the link, optionally retrieve the Customer by the email token.
- For global Customers, use the Get Customer by email token endpoint.
- For Store-specific Customers, use the Get Customer in Store by email token endpoint.
- Verify the Customer's email. This sets the Customer's
isEmailVerified
field totrue
.- For global Customers, use the Verify email of Customer endpoint.
- For Store-specific Customers, use the Verify email of Customer in Store endpoint.
- These methods are also provided on the My Customer Profile with their respective Scopes.
isEmailVerified
property is set to false
.Customer password reset
To reset a Customer's password, do the following:
-
Send a password reset token embedded in a link to the Customer.
-
For global Customers, use the Create password reset token for Customer endpoint.
-
For Store-specific Customers, use Create password reset token for Customer in Store endpoint.Creating a password reset token does not invalidate older tokens. The
ttlMinutes
field on CustomerCreatePasswordResetToken defines the validity period.
-
-
When the Customer clicks the link, optionally retrieve the Customer by the password token.
- For global Customers, use the Get Customer by password token endpoint.
- For Store-specific Customers, use the Get Customer in Store by password token endpoint.
-
When the Customer enters the new password, reset the Customer's password.
- For global Customers, use the Password reset of Customer endpoint.
- For Store-specific Customers, use the Password of Customer in Store endpoint.
- These methods are also provided on the My Customer Profile with their respective Scopes.
Customer permissions
Customer information can contain sensitive data, therefore you need to ensure that a customer can only access their own personal information.
Composable Commerce resources that may contain or refer to customer data:
- BusinessUnit B2B
- Cart
- Customer
- CustomObject
- DiscountCode
- Message
- Order
- OrderEdit
- Payment
- Quote
- QuoteRequest
- Review
- ShoppingList
- StagedQuote
view_customers
scope provides access to all Customers in your Project. Another way of data fencing is to provide access through the Me endpoints as described in the following section.Hierarchies within Business Units B2B
Roles in Business Units B2B
Store-specific permissions
Customer-specific products, prices, and discounts
Customer Groups
10 000
.500
Customer Groups per Customer BETA. The Customer customerGroup
field supports assigning only one Customer Group per Customer, whereas the customerGroupAssignments
field BETA supports assigning multiple Customer Groups per Customer.customerGroupAssignments
field due to greater flexibility.Business Units B2B
The below table summarizes which Composable Commerce APIs you can utilize for which purpose in your use case.
Composable Commerce API | Use it for |
---|---|
Cart Discounts | specifying the customer-specific cart discount on each Cart object |
Channels | specifying the customer-specific price on each Price object |
Stores | specifying the customer-specific distribution channel used on each Price object, scoping the permission to the particular Customer |
Product Selections | specifying a customer-specific assortment of Products. B2B companies frequently have restrictions on which subset of their products they can make available to customers due to, for instance, purchase regions or legal restrictions. Not needed if all Products should be available for all Customers |
Business Units B2B | letting companies act as customers |
customerId
has to reference an Associate in the Business Unit. To ensure that you apply the correct pricing, reference the customer-specific Channel in the distributionChannel
of the Cart's Line Item Drafts. Without specifying the Channel, Composable Commerce would select the base price instead of the customer-specific price.Depending on your use case, you may not need to use Stores at all, or you can decide to use Stores only with Channels or Product Selections.
Standalone
and create Prices for every Channel. For more information about the difference between Embedded Prices and Standalone Prices, see Pricing.