Search Members by name

2,744 views
Skip to first unread message

Kushal Shah

unread,
Jul 25, 2013, 4:07:31 PM7/25/13
to meetu...@googlegroups.com
Hi

Sorry, I am new to Meetup API and if this question has been covered.

Is there a way to search for a member based on his name? It seems you can get to member only using his Id and I don't know how to get Id of a person using his name currently.

Thanks,
Kushal.

Doug Tangren

unread,
Jul 25, 2013, 4:18:52 PM7/25/13
to meetup-api
A general search by member name is not support in the API or the site. There is limited support for member profiles on groups pages. That support is not yet in the API.
 
Thanks,
Kushal.

--
--
You received this message because you are subscribed to the Google
Groups "Meetup API" group.
To unsubscribe from this group, send email to
meetup-api+...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/meetup-api?hl=en?hl=en
 
---
You received this message because you are subscribed to the Google Groups "Meetup API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meetup-api+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Matthew Weir

unread,
Aug 8, 2013, 12:16:48 PM8/8/13
to meetu...@googlegroups.com
IDs can be retrieved with member names via 2/members API.  You have to grab all the data and create your own filtering, but once you have that data you can search via a name. I'm sure there's ways to do this in many scripting languages.
A Flex example would be putting the results from the API into an ArrayCollection. 

<mx:TextInput id="searchText" change="onSearchTextChange()"/>
private function onSearchTextChange():void
{
      MemberAC.filterFunction = nameFilterFunction;
      MemberAC.refresh();
}

private function nameFilterFunction(item:object):Boolean
{
     if(item.name.toLowerCase() == searchText.text.toLowerCase())
     {  
        return true; 
     }
     return false;

Joe Lippeatt

unread,
Aug 8, 2013, 1:35:16 PM8/8/13
to meetu...@googlegroups.com
Right. Just keep in mind you can have more than one member with the same name.   Working from member IDs is always safest, especially if the next step is adding/removing them from events or kicking them out. 

Thanks!

Joe



--

Kushal Shah

unread,
Oct 29, 2013, 1:33:57 PM10/29/13
to meetu...@googlegroups.com

Actually, let me clarify the question. I just have the name of the person. Not the groups he is part of. /2/Members API seems to be asking for the GroupId, correct? How do I avoid that?

Thanks,
Kushal.

Doug Tangren

unread,
Oct 29, 2013, 2:56:41 PM10/29/13
to meetup-api
On Tue, Oct 29, 2013 at 1:33 PM, Kushal Shah <kusha...@gmail.com> wrote:

Actually, let me clarify the question. I just have the name of the person. Not the groups he is part of. /2/Members API seems to be asking for the GroupId, correct? How do I avoid that?

We don't support searches by member name in the API or on meetup.com. You would have to know at the very least what group they may be in.
Reply all
Reply to author
Forward
Message has been deleted
0 new messages