Show variable
const headers = {
'Accept':'application/json'
};
fetch('https://{instance}.paligoapp.com/api/v2/variables/{id}/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
Responses
{
"id": 123,
"variable_set_id": 123,
"title": "Height",
"type": "text"
}