Show a taxonomy
const headers = {
'Accept':'application/json'
};
fetch('https://{instance}.paligoapp.com/api/v2/taxonomies/{id}/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});