This endpoint helps you get the details of your Terraswitch Corporate account details.
GET {{BASE_URL}}/v1/corporate/account
import Axios from'axios';// set the api urlconstAPI_URL=`${BASE_URL}/v1/corporate/account`;// make request using axiosAxios({ method:"GET", url:`${API_URL}`, headers: { lg:'en', ch:'web' Authorization: `Bearer ${API_KEY}`,'Content-Type':'application/json', }}).then((resp) => {console.log(resp)}).catch((err) => {console.log(err)})