Hi everybody,
Does anybody know how to use "where_type" param to get subnodes of several types (for example 0 and 144)?
I try the following, but it does not work (all node types returns):
var url = baseURL + '/api/v1/nodes/2000/nodes';
$.ajax({
url:url,
data: {where_type: [0,144]},
type:"GET",
dataType:"json",
headers: { "OTCSTicket": myTicket },
success:function(res){
console.log(res);
},
error:function(res){
console.log(res.statusText);
}
});