JavaScript での API プロキシのプログラミング  |  Apigee ドキュメント  |  Apigee Docs
//Parse the respose from the target. var res = JSON.parse(context.proxyResponse.content); //Pull out only the information we want to see in the response. var minimizedResponse = { city: res.root.city, state: res.root.state }; //Set the response variable. context.proxyResp...
docs.apigee.com