Clearview IFMS Documentation Centre
// Import the SDK
import axios from "axios";
// Make your first API call
const getData = async () => {
const resp = await axios.get("API_ENDPOINT");
return resp;
}
const values = await getData();
console.log(values);
Last updated



