These docs are for v2023.01. Click to read the latest docs for v2024.09.

Discussions

Ask a Question
Back to All

i am getting error "route not found"

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;