I’m trying to refresh the screen AR303000 after I updated the customer status via REST-API. This is my API-Call (PUT):
{
"CustomerID": {
"value": "XXXX"
},
"Status": {
"value": "A"
}
}Right now the user has to manually refresh the screen to see the new status value. If the user changes the customer data without hitting refresh he receives an error.
Is there any possibility to refresh the screen after the customer object is updated by the REST call?