We are trying to Proxify the API calls which is called by a external UI,
The first call from the UI sends a session ID.
What we require is that in the subsequent calls send by the UI , we need to maintain this session from the apigee proxy end.
Can you suggest any way to achieve this.
Solved! Go to Solution.
Hello @Pallavi Mishra,
If I get your requirement correctly, you are trying the get the DATA of the first call in the subsequent calls, identified by the UUID.
If I got it correctly, then yes, there is a concept of cache in the Apigee Edge, which you can use. You can set the data in the cache in the first call and associate the UUID. And in the subsequent calls, you can pass the UUID and get the data from the cache and process it further
You would find required information to populate the cache here and to look up the cache data here
Does it help ?