Version 1 | Version 2
HTTP Method & URL
GET <base-url>?Type=CommunityBookmars&CommunityId=<id>&Version=1& Page=<page#>
Parameters
| Type | <Required> Type of the request resource |
| Version | <Required> API version# |
| CommunityId | <Required> ID of the group |
| Page | <optional> Page# (starts with 1) of the results. Defaults to 1st page. |
Description
This call gets all the bookmarks in a particular group. The corresponding tags are retrieved using a different API call.
Example Response
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<TimeStamp> 2008-03-25 05:29:30 GMT </TimeStamp>
<APIVersion> 1.0 </APIVersion>
<CurrentPage> 1 </CurrentPage>
<TotalPages> 20 </TotalPages>
<PageSize> 10 </PageSize>
<Bookmarks>
<Bookmark>
<Name> CNN.com - Breaking News, U.S., World, Weather, Entertainment
_ Video News </Name>
<URL> http://www.cnn.com/ </URL>
<SaveCount> -1 </SaveCount>
<Id> 204 </Id>
<Tags>
<Tag>
<Keyword> news </Keyword>
<Id> 34 </Id>
<Weight> 1 </Weight>
</Tag>
</Tags>
<UserName> Joe Doe </UserName>
<CreatedOn> 6 days ago </CreatedOn>
<CommunityName> News Community </CommunityName>
<CommunityId> 333 </CommunityId>
<CommentCount> 2 </CommentCount>
</Bookmark>
</Bookmarks>
</Response>
Notes:
- Similar format to that of Get User's Bookmarks API
- SaveCount: Number of times the URL is saved (It is -1 for all bookmarks in this result in Version 1 of API).
- The weight of the tags is always 0 in this result.