Get the active share link
curl --request GET \
--url https://aquila.attaxr.com/api/js-monitoring/{id}/share \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/js-monitoring/{id}/share', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/js-monitoring/{id}/share"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"error": "<string>"
}JS Monitoring
Get the active share link
GET
/
api
/
js-monitoring
/
{id}
/
share
Get the active share link
curl --request GET \
--url https://aquila.attaxr.com/api/js-monitoring/{id}/share \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/js-monitoring/{id}/share', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/js-monitoring/{id}/share"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"error": "<string>"
}
