HTTP Method & URL
GET <base-url>?Type=BookmarkSearchUsers&Keyword=<searchstring>&Version=1&UserId=<userid>
Parameters
| Type | <Required> Type of the request resource |
| Version | <Required> API version# |
| Keyword | <Required> Search String |
| UserId | <Optional> If userid is given, the results will also include the search of user's personal bookmarks. This would produce the same results as if the user is logged-in and searched. |
Description
Returns the list of all users corresponding to the bookmarks matching the given search string.
Example Response
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<TimeStamp> 2008-03-25 05:29:30 GMT </TimeStamp>
<APIVersion> 1.0 </APIVersion>
<Users>
<User>
<UserName> Joe Doe </UserName>
<Id>4 </Id>
<Email> jdoe@mycompany.com </Email>
</User>
<User>
<UserName> Scott Tiger </UserName>
<Id> 5 </Id>
<Email> stiger@mycompany.com </Email>
</User>
</Users>
</Response>