Until now I have used the v2 call of members to the API filtering by where_type=0 and query for the name, but I also need to filter by title but I can't do it. What would it be like?
I have this:
var url = baseURL+'/api/v2/members?where_type=0&query="+name+""'; // It´s OK
I need something like this:
var url = baseURL+'/api/v2/members?where_type=0&query="+name+"&where_title="+title+""; //WRONG
Thanks.