# Return data from NVData file This function retrieves the data from an NVData file on disk. cPanel NVData is a per-account configuration storage mechanism that you can use to maintain persistent cPanel & WHM settings across multiple sessions. This includes custom settings for your own themes. You can call this function as a JSON request. For more information about additional output options, run the command. Endpoint: POST /personalization_get Version: 11.134.0.5 Security: BasicAuth ## Request fields (application/json): - `names` (array,null) A list of NVData keys stored on the server. If you did set a value for the requested keys, the system returns a null value. Example: ["milk","coffee"] - `store` (string) The name under which the values are stored. Example: "beverages" ## Response 200 fields (application/json): - `data` (object) Example: {"personalization":{"coffee":{"reason":"OK","success":1,"value":"hot"},"milk":{"reason":"OK","success":1,"value":"cold"}}} - `data.personalization` (object) The NVData keys and values stored on the server. Example: {"coffee":{"reason":"OK","success":1,"value":"hot"},"milk":{"reason":"OK","success":1,"value":"cold"}} - `data.personalization.additionalProperties` (object) The retrieved NVData information stored on the server. This return's name is based on the keys provided in the parameter with WHM API 1's function. - `data.personalization.additionalProperties.reason` (any) An error message describing the failure if the Boolean returns a value. - `data.personalization.additionalProperties.success` (integer) Whether the function successfully retrieved the value from the server. *  — Successful. * — Unsuccessful. Enum: 1, 0 - `data.personalization.additionalProperties.value` (string,null) The value stored in the field. * null — The pair is available in the store. - `metadata` (object) - `metadata.command` (string) The method name called. Example: "personalization_get" - `metadata.reason` (string) The reason the API function failed when the field is 0. This field may display a success message when a function succeeds. Example: "OK" - `metadata.result` (integer) * - Success * - Failed: Check the reason field for more details. Enum: 0, 1 - `metadata.version` (integer) The version of the API function. Example: 1