Developers
Find users by interests
This API uses the information stored in Brainstorm to provide you with a way to list users who are interested in specific tags in Brainstorm.
Required Query parameters
- tags - The interest (usually a single word or phrase) to search by. For example, "java".
GET: /api/people/skilledat?tags=[name of tag to search by]
This API endpoint is capable of pagination. Note the presence of the following elements:
<NumberOfResults>10</NumberOfResults>
<Page>0</Page>
<TotalResults>37</TotalResults>
<Results xmlns="http://brainstorm.intuit.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Data>
<Person>
<Id>4312</Id>
<DisplayName>Chris Lee</DisplayName>
<EmailWork>Chris_Lee@intuit.com</EmailWork>
<Location/>
<Phone>650-944-5798</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>7230</Id>
<DisplayName>Daniela Jorge</DisplayName>
<EmailWork>Daniela_Jorge@intuit.com</EmailWork>
<Location>0502143, Mountain View, CA</Location>
<Phone>650-944-3393</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>4011</Id>
<DisplayName>Eric Kowalchyk</DisplayName>
<EmailWork>Eric_Kowalchyk@intuit.com</EmailWork>
<Location/>
<Phone>650-944-5725</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>6544</Id>
<DisplayName>Russell Poole</DisplayName>
<EmailWork>Russell_Poole@intuit.com</EmailWork>
<Location>0203248, Menlo Park, CA</Location>
<Phone>650-944-2448</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>6435</Id>
<DisplayName>Peter Terrill</DisplayName>
<EmailWork>Peter_Terrill@intuit.com</EmailWork>
<Location>0501121, Mountain View, CA</Location>
<Phone>650-944-3562</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>9368</Id>
<DisplayName>Hui Jin</DisplayName>
<EmailWork>Hui_Jin@intuit.com</EmailWork>
<Location>0103104O, Menlo Park, CA</Location>
<Phone>(650)9442814</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>5324</Id>
<DisplayName>Elangovan Shanmugam</DisplayName>
<EmailWork>Elangovan_Shanmugam@intuit.com</EmailWork>
<Location>0102124, Menlo Park, CA</Location>
<Phone>650-944-3346</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>8630</Id>
<DisplayName>Keathon Keane</DisplayName>
<EmailWork>Keathon_Keane@intuit.com</EmailWork>
<Location>01CC55, Tucson, AZ</Location>
<Phone/>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>3420</Id>
<DisplayName>Phil Ohme</DisplayName>
<EmailWork>Phillip_Ohme@intuit.com</EmailWork>
<Location>1A14-19F, San Diego, CA</Location>
<Phone>858-215-8199</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
<Person>
<Id>4631</Id>
<DisplayName>Will Detterman</DisplayName>
<EmailWork>wdetterman@innovativemerchant.com</EmailWork>
<Location/>
<Phone>818-436-7947</Phone>
<PhotoExists>false</PhotoExists>
<PhotoUrl_36x36>http://localhost.localhost/Images/photo_none_small.jpg</PhotoUrl_36x36>
</Person>
</Data>
<NumberOfResults>10</NumberOfResults>
<Page>0</Page>
<TotalResults>37</TotalResults>
</Results>
{
"Data":[
{
"Id":4312,
"DisplayName":"Chris Lee",
"EmailWork":"Chris_Lee@intuit.com",
"Location":"",
"Phone":"650-944-5798",
"PhotoExists":false,
"PhotoUrl_36x36":"http:\/\/localhost.localhost\/Images\/photo_none_small.jpg"
},
{
"Id":7230,
"DisplayName":"Daniela Jorge",
"EmailWork":"Daniela_Jorge@intuit.com",
"Location":"0502143, Mountain View, CA",
"Phone":"650-944-3393",
"PhotoExists":false,
"PhotoUrl_36x36":"http:\/\/localhost.localhost\/Images\/photo_none_small.jpg"
},
{
"Id":4011,
"DisplayName":"Eric Kowalchyk",
"EmailWork":"Eric_Kowalchyk@intuit.com",
"Location":"",
"Phone":"650-944-5725",
"PhotoExists":false,
"PhotoUrl_36x36":"http:\/\/localhost.localhost\/Images\/photo_none_small.jpg"
}
],
"NumberOfResults":3,
"Page":0,
"TotalResults":37
}