curl -X GET "https://telaruma.com/api/v1/approvals.cfc?method=get_by_token&token=YOUR_EPHEMERAL_TOKEN"
const token = 'YOUR_EPHEMERAL_TOKEN';
const res = await fetch(`https://telaruma.com/api/v1/approvals.cfc?method=get_by_token&token=${token}`);
const data = await res.json();
console.log(data);
var http = new Http();
http.setMethod("GET");
http.setUrl("https://telaruma.com/api/v1/approvals.cfc?method=get_by_token&token=YOUR_EPHEMERAL_TOKEN");
var result = deserializeJson(http.send().getPrefix().fileContent);
writeDump(result);