I have a problem wit sending JSON object as a parameter to my post API
I get 404
const params = {"id": 1, "title" : "x"}
axios({
method: 'post',
url: '......',
data: params
}).then((data)=>{
console.log('success')
}).catch((error)=>{
console.error();
});