How to parse multiple xml objects present at same level in the response

Thanks, @neilstudd for the above solution. As of now, I used cheerio lib for parsing

const $ = cheerio.load(jsonData1, {
xml: {
normalizeWhitespace: true,
},
});

its bit complex but worked for me. But I think your solution should be cleaner approach.