Customer
- 1 External CRM connection
- 2 Retrieve a customer
- 3 Customer creation
- 3.1 General parameters
- 3.2 Default customer form
- 3.3 Address autocomplete
- 3.4 Add custom fields
- 3.4.1 Custom fields structure
- 3.4.2 In case of lists
- 3.4.3 Examples
- 3.5 Edit default fields parameters
- 3.5.1 Examples
- 3.6 Customer creation request
- 4 Customer edition
Once the basket has been validated, you will be taken to the customer information section. At this stage, you can search for a customer already known to CRM (Customer Relationship Manager), or create a new one.
External CRM connection
The CRM is used to manage the creation, the edition and the retrieval of customer information.
If no configuration is made, the Store App will automatically connect to our internal CRM. The database will be empty at first, but will fill up as customers are created from the Order In Store. However, we strongly recommend connecting to the external customer CRM.
Adding an external CRM totally replace the internal CRM which means that it is not possible to have both of them.
To connect to the external CRM, you need to set a specific configuration in the Configuration > Store App > Extensions > CRM section of the backoffice. Please indicate "external": true
and the API route link in the key "url"
.
Retrieve a customer
Whether you're connected to the external or internal CRM, a search bar allows you to search for customers in the database. The search is performed by sending a "pattern"
field to the API corresponding to the text written.
By default, this request is sent for each character from the 3rd onwards. The results returned by the API are displayed as a list below the search bar. Last name, first name, email and phone number are displayed.
It is also possible to display a “Search” button and launch the query only when this button is clicked. To do this, activate the key "use_search_button": true
If the external CRM needs additional information from the user or store, you can add fields to the request body with the customer.search_request_params.external_parameters
configuration key. Added fields must be valid paths in the endpoint
or user
structure, surrounded by %
characters. See example below.
Customer creation
General parameters
Customer information is always mandatory when placing an order. However, it is possible to authorize an order by giving only the e-mail address when making an immediate purchase. To do this, activate the quick_purchase
configuration key. This option is not available for Click & Collect or Home Delivery orders.
By default, the basic customer form is displayed below the search so that a new customer can be created. However, you can disable the creation of new customers and make the customer form disappear by deactivating the configuration “create_customer”
.
Default customer form
Default fields
By default, when the catalogue is activated, a standard form is proposed with the following fields:
Default field | Type | Mandatory | Default Validation |
---|---|---|---|
Last Name | text | Yes | No |
First Name | text | Yes | No |
Yes | Yes A valid email format is required | ||
Phone Number | tel | Yes | Yes The phone index corresponding to the store's country is automatically proposed. It can, however, be changed manually. |
Country | list | Yes | Yes The country code corresponding to the store's country is automatically selected. It can, however, be changed manually. By default, the list proposes the following countries: France, Belgium, Germany, Italy, Luxembourg, Spain, Switzerland, United Kingdom. This list can be overwritten, see section below. |
Address 1 | text | Yes | No |
Address 2 | text | No | No |
City | text | Yes | No |
Postal code | text | Yes | No |
This is what the default customer form looks like:
Specific configurations on the default form
Invert the position of the first and last names: so that the first name appears first and the last name second, you need to add the configuration
"customer.invert_names" : true
Change the list of countries:
The default form proposes the following countries: France, Belgium, Germany, Italy, Luxembourg, Spain, Switzerland, United Kingdom. An override can be made per sales channel using the configuration "countries.{sales_channel}.{list of countries}"
Country codes must be in ISO-3166 format. Logos and translations will add themselves in the Store App.
Address autocomplete
To streamline address entry and ensure accuracy, you can activate the autocomplete module. Powered by Google, this feature provides instant address suggestions as you type, helping to automatically populate fields such as street name, number, city, and postal code. Address suggestions are limited to the country selected above.
Please note:
This feature requires the activation of an additional module. To activate it, a specific contractual agreement is required, involving an additional cost per order placed through Order In Store.
For more information, please reach out to our sales team or your account manager.
Add custom fields
You can take personnalisation a step further by adding custom fields to the customer form. To do this, add the required fields to the configuration customer.custom_fields.{sales_channel}.
If the fields added are to be applied to all the project's sales channels, then the field "_ALL_"
must be given in the {sales_channel}
part.
Here is a configuration applied to all the sales channels with ...
being the structure of the custom fields that we will see below.
Custom fields structure
Inside the {sales_channel}
entity ( or "_ALL_"
) there is an array of objects. Each object corresponds to a custom field to be added to the form. Here is the configuration to be entered for each custom field.
Field | Type | Mandatory | Description |
---|---|---|---|
| string | Yes | This key is used to give the identifier of the field. This id must match with parameters used in
|
| string | No | Indicates whether the field should be saved in the Only used for
|
| string | No | Type of the field. By default, the
If the field type is a list, then other fields will need to be configured. See below. |
| boolean | No | Indicates whether the field is mandatory or not. By default, custom fields are optional. |
| string | No | This key defines the name of the form element to which it must be placed after. Please note, the form element must be in the default form or declared before in the same form. It it also possible to place the element on the top of the form with the value If not defined, the element form will be placed at the bottom of the form.
|
| object | No | Enables to add custom validation to the field, which will be checked when the create button is clicked. These 3 types of validation can be configured alone or together.
The error_translation_key specified here must then be translated with the pattern Regexes with ‘\’ must escape by doubling it "\\"
"validation": {
"min_characters": 5,
"max_characters": 5
}
"validation": {
"regex": "^([a-zA-Z]){1}([0-9][0-9]|[0-9]|[a-zA-Z][0-9][a-zA-Z]|[a-zAZ][0-9][0-9]|[a-zAZ][0-9]|[0-9][a-zAZ]){1}([ ])*([0-9][a-zA-z][a-zA-z]){1}$",
"error_translation_key": "UK_postcode_error_message"
} And then translate the key |
In case of lists
If the type of field added is a list, then additional configurations must be added inside the structure.
Field | Type | Mandatory | Description |
---|---|---|---|
| array[string] | Yes | List of values displayed in the drop down. Options inside will be translated with the key List of options for the "options": [
"MR",
"MRS"
], |
| bool | No | Indicates if multiple selection can be done.
|
| bool | No | Indicates if drop down elements are searchable. |
| string | No | Indicates the pre-selected option. |
Examples
Edit default fields parameters
The form's default fields cannot be deleted, but they can be modified. To do this, just configure these fields in the same configuration as custom fields using the same configuration structure. It is essential that the field name
configured corresponds to the name of the default fields given above.
Overloading a default field removes its mandatory and validation options. To make it mandatory again, for example, specify "required": true
Examples
Customer creation request
Once the customer form has been completed and validated, a call will be made to the POST/customers route. If an external CRM has been configured, the call will be directly made to this external CRM.
An external CRM may generate errors (e.g., email address or phone number already existing in the database).
In such cases, the external CRM must return a 409
error containing:
field
- form field in errormessage
- error message to display
Then, the error message will be display on the form.
Customer edition
When the client is created or retrieved from the external database, it can still be modified.
Customer information subject to change
Multiple addresses (shipping or billing)
create_request_params
update_request_params
upsert_address_request_params
customer
do_not_refresh_after_patch