This function is used to save personalization data for a WHM user to a datastore on disk.
We call this system cPanel NVData.
cPanel NVData is a per-login configuration storage mechanism that you can use to maintain persistent user interface settings across multiple sessions.
This includes custom settings for your own themes and plugins.
This function is used to save personalzation data for WHM users only. If you want to save personalization data for cPanel users, use the
UAPI function personalization_set
.
api required | integer The WHM API version number |
personaliz required | object An object you want to store. |
store | string The name under which the values will be stored. |
HTTP Request was successful.
object | |
object |
{- "api.version": 1,
- "personalization": {
- "coffee": "hot",
- "milk": "cold"
}, - "store": "beverages"
}
{- "data": {
- "personalization": {
- "coffee": {
- "reason": "OK",
- "success": 1,
- "value": "hot"
}, - "milk": {
- "reason": "OK",
- "success": 1,
- "value": "cold"
}
}
}, - "metadata": {
- "command": "personalization_set",
- "reason": "OK",
- "result": 1,
- "version": 1
}
}