I have an requirement to pass a some values from mobile to server in a web service call and so I am planning to pass all the values in JSON format like the below
<
let qs = event.queryStringParameters; const query = Object.keys(qs).map(key => key + '=' + qs[key]).join('&');