I am using Axios JS library for sending post json request. but I am not receiving anything at the server. Here is my code
const dt = JSON.stringify({"data":{"value":"gdfg1df2g2121dgfdg"}});
const request = axios.post(url, {dt});
I need to send post raw body in json format.
const request = axios.post('https://api.medlanes.com/booking_center/call/get_products', dt);- Karthik VU