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
| ||||
Phone Number | tel | Yes | Yes
| ||
Country | list | Yes | Yes
| ||
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:
There are specific configurations on the default form:
Put the first name before the surname
Change the list of countries
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
| |||||
| boolean | No | Indicates whether the field is mandatory or not. By default, 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.
|
Field | Type | Mandatory | Description | ||
---|---|---|---|---|---|
| array[string] | No | List of values displayed in the drop down. Options inside will be translated with the key
| ||
| 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. |
Regarding the address:
address_1
- sent in the customer.addresses.[0].lines.[0]
field of the POST /customers
query
address_2
- sent in the customer.addresses.[0].lines.[1]
field of the POST /customers
query
city
- sent in the customer.addresses.[0].city
field of the POST /customers
query
zip_code
- sent in the customer.addresses.[0].zip_code
field of the POST /customers
query
country
- sent in the customer.addresses.[0].regions.country.code
field of the POST /customers
query
Regarding the contact - sent in the customer.addresses.[0].contact
AND customer.contact
fields of the POST /customers
query
title
first_name
last_name
phone_number
email
company_name
mobile_number
Regarding custom information
information.{custom_field}
sent in the customer.addresses.[0].information
field if target = address / sent in the customer.contact
field if target = address
external_id
sent in the customer.external_id
field. The target need to be set as customer.
Please note, the label of the field will be translated based on the translation key crm.<name>
.
External CRM may raised error (exemple email adress/phone number already used).
If so, project interface MUST return a 409 error including:
field
that is the field related to the conflit. Value MUST be email
or phone_number
message
which is the error message to display in the interface
The error message will be display on the form.