Hi @jayv25585659,
It depends on why you need the updated cookie during the same request:
Store the updated value in a request attributeAfter you update the cookie on the response, also do:
request.setAttribute("cookieXUpdatedValue", "ABC,DEF");
Then, in your Sling Model (or later code in the sam...