I am trying to communicate with an API from my React application using Axios. I managed to get the GET request working, but now I need a POST one.
I need the body to
axios({ method: 'post', //put url: url, headers: {'Authorization': 'Bearer'+token}, data: { firstName: 'Keshav', // This is the body part lastName: 'Gera' } });