Get Tree Status
Retrieve the status of all trees
const headers = {
'Accept':'application/json'
};
fetch('/tree/status',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
Responses
Status
Meaning
Description
Schema
Response Schema
Name
Type
Required
Restrictions
Description
Last updated