- 24 Jan 2025
- 1 Minute to read
- Print
Configure the client number
- Updated on 24 Jan 2025
- 1 Minute to read
- Print
You can configure whether the DOOH client number field is visible and optional. This gives you the flexibility to enter a client number when required, while ensuring one is captured for reporting purposes. There are two new configurations in the config.json file to configure the client number field.
Display or hide client number
To configure the client number visibility, perform the following steps:
Navigate to the configuration files on the server at: GVServer2\www\gv2\gf\GFWebHtmlCustomer\
Open one of the following folders:
00000: edit configurations for the entire server, which means for all customers.
000xxx: edit customer-specific settings. xxx is the customer ID.
Open the config.json file in your folder with a text editor like Notepad++.
Set showClientNumber to one of the following settings:
true: display the client number field in the client profile and the order confirmation. In this case, the field is optional and can be left blank.
false: hide the client number field in the client profile. In the order confirmation, a client number appears if it was previously entered, otherwise it remains blank. Note that the client number is still accessible via REST API.
"cms": {
"dooh": {
"showClientNumber": true
}
Make client number mandatory
To configure whether the client number is mandatory or not, perform the following steps:
Navigate to the configuration files on the server at: GVServer2\www\gv2\gf\GFWebHtmlCustomer\
Open one of the following folders:
00000: edit configurations for the entire server, which means for all customers.
000xxx: edit customer-specific settings. xxx is the customer ID.
Open the config.json file in your folder with a text editor like Notepad++.
Set mandatoryClientNumber to one of the following settings:
true: make the client number field mandatory. The entered client number is only used for the current order confirmation and not saved in the client profile.
false: make the client number field optional.
"cms": {
"dooh": {
"mandatoryClientNumber": false
}