Discussions
i am getting error "route not found"
5 days ago by Daya R
i am fetching rates using below request, it is giving error route not found, can you please help to resolve it.
const response = await easyshipAPI.post("/rate/v1/rates", {
origin_address : {},
destination_address: {},
parcels : {}
}
here easyshipAPI is as below :
const easyshipAPI = axios.create({
baseURL: "https://api.easyship.com",
headers: {
Authorization: Bearer ${process.env.EASYSHIP_API_KEY}
,
"Content-Type": "application/json",
},
});
module.exports = easyshipAPI;