const myHeaders = new Headers();
myHeaders.append("Authorization", "your token");
const requestOptions = {
method: "GET",
headers: myHeaders,
redirect: "follow"
};
fetch("{{path}}/api/assets/get_notebook_status/?report_id=", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));