Development Guides Home >> Guide to cPanel Interface Customization and Branding
The Onboarding Assistant will display for all new user accounts.
To hide the Onboarding Assistant for new users, run the following command, where username is the cPanel account name:
echo '{"personalization": {"cp-welcome-panel_dismissed": 1}}' | uapi --user=userName --input=json --output=jsonpretty Personalization setThe API response will resemble the following:
{
"apiversion" : 3,
"module" : "Personalization",
"result" : {
"messages" : null,
"warnings" : null,
"metadata" : {},
"errors" : null,
"data" : {
"personalization" : {
"cp-welcome-panel_dismissed" : {
"success" : 1,
"value" : 1,
"reason" : "OK"
}
}
},
"status" : 1
},
"func" : "set"
}