Hello I try to pull fedex tracking product info with axios. but here doc https://developer.fedex.com/api/en-us/catalog/track/v1/docs.html#operation/Track%20by%20Tracking%20Number is not understandable. here my code
import axios from "axios"
( ()=>{
const config = {
method:`post`,
url: "https://apis-sandbox.fedex.com/track/v1/trackingnumbers",
headers:{
"Content-Type" : "application/json",
"X-locale": "en_US",
"Authorization":"Bearer blabla"
}
data:JSON.stringify(<trackingNumber>)
}
const axi = axios(config).then(res=> console.log(res.data))
})()
here is the instance tracking number for you: 277607960166 what am I missing here I cannot figure out.