Line graph in postman

var template = `

`;

// Set visualizer
pm.visualizer.set(template, {
// Pass the response body parsed as JSON as data
response: pm.response.json()
});

My query is:

{
“data”: {
“predictedImages”: [
{
“SImg”: “./media/person1_bacteria_1_lgOdnLj_QqrqfBH.jpeg”,
“SetImgID”: “1”,
“alldata”: [
{
“SetImgID”: “1”,
“SValue1”: “50.0”,
“SClass1”: “NORMAL”
}
]
},
{
“SImg”: “./media/person1_bacteria_1_lgOdnLj_QqrqfBH_Eoc1So1.jpeg”,
“SetImgID”: “2”,
“alldata”: [
{
“SetImgID”: “2”,
“SValue1”: “52.0”,
“SClass1”: “PNEUMONIA”
}
]
}
]
}
}

What is your query?

All I can see is an example JSON object.

Top tip: Please use the Preformatted text option to post code or data structures.
Otherwise its hard to read when everything gets aligned to the left.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.