Link

How to add additional data to the customer profile

Question

Is it possible to add some additional data to the Customer profile in NetLicensing, which can be used by different departements and processes?

Answer

Additional information can be added to any NetLicensing entity (including Customer/Licensee) using Custom Properties. See this FAQ on how to use this.

Additionally, you can group customer information in the NetLicensing UI by adding JSON structure to the reserved Tag (Custom Property):

customerData
{
    "Address": {
        "Address": "Radlkoferstr. 2",
        "City": "Munich",
        "ZIP": "81373",
        "Country": "Germany"
    },
    "Business Info": {
        "VAT": "DE12345678",
        "CRM-ID": "1234",
        "Type": "LaaS"
    }
}

JSON content will be made accessible on the Customer profile as the separate tabs.

See also