Personalization
Save NVData data to file
This function saves its data to 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 and plugins.
Note:
NVData keys and values are limited to 128 and 2048 bytes, respectively.
post/Personalization/set
Request body
Example request
{
"personalization": {
"coffee": "hot",
"milk": "cold"
}
}Response
HTTP Request was successful.
Example response
{
"apiversion": 3,
"func": "set",
"module": "Personalization",
"result": {
"data": {
"coffee": {
"reason": "OK",
"success": 1,
"value": "hot"
},
"milk": {
"reason": "OK",
"success": 1,
"value": "cold"
}
},
"status": 1
}
}