Is it possible to use post method request using getJSON and also can we have payload body for getJSON call?
for example in JS =>
axios({
method: 'post',
url: 'http://localhost:3000/getData',
headers: {},
data: {
"name": "ABC"
},
})