How to see changes with ZOHO.CRM.API.updateRecord(config) without reload page

How to see changes with ZOHO.CRM.API.updateRecord(config) without reload page

hello 
got a widget in account, trigger with a button
i copy data to account when click on a button, in my popup
All is working well.
But i need to reload the page to see the update.

How can i see the changes without reloading page, only when close the widget popup ?
function handleCopyButtonCRMClick() {
console.log('handleCopyButtonCRMClick');
/*
* Fetch Information of Record passed in PageLoad
* and insert the response into the dom
*/
console.log('data.Entity : ' + sharedVariableEntityId);
ZOHO.CRM.API.getRecord({Entity:"Accounts",RecordID:sharedVariableEntityId})
.then(function(response)
{
console.log('response : ' + JSON.stringify(response));

var config={
Entity:"Accounts",
APIData:{
"id": sharedVariableEntityId,
"testzoho4__Mycustomfields": "Zylker test"
}
}
ZOHO.CRM.API.updateRecord(config)
.then(function(data){
console.log(data)
})

//show the record information for debugging
if (sharedVariableDebug) {
document.getElementById("recordInfo").innerHTML = JSON.stringify(response, null, 2);
}
});
}



Thanks for insights