Resolve a public share
curl --request GET \
--url https://aquila.attaxr.com/api/public/{resourceType}/{token}const options = {method: 'GET'};
fetch('https://aquila.attaxr.com/api/public/{resourceType}/{token}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/public/{resourceType}/{token}"
response = requests.get(url)
print(response.text)Public Shares
Resolve a public share
Unauthenticated — the token is the credential. resourceType is lead, js-monitoring, or js-analysis.
GET
/
api
/
public
/
{resourceType}
/
{token}
Resolve a public share
curl --request GET \
--url https://aquila.attaxr.com/api/public/{resourceType}/{token}const options = {method: 'GET'};
fetch('https://aquila.attaxr.com/api/public/{resourceType}/{token}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/public/{resourceType}/{token}"
response = requests.get(url)
print(response.text)
