In postman, I have the request body message in json format
{ "name": "Mary Jessie", "dob": "2000-02-12", "email": "mary.j@example.com"}
Ideally, I get the response
{"java": "20", "python": "10", "javascript": "15"}
How can I cache based on the values from my request (i.e. Jonathon Zack, 1995-05-15, jon.zack@example.com), the response values for java, python and javascript is changed.
@dino