originally posted in:BungieNetPlatform
View Entire Topic
First, where is the search forum function to search the Bungie API forum. I tried to search the forum (see there is a magnifying glass in the top right) but cannot search this specific Bungie API forum.
My question is I want a query which will return all membership IDs or gamertags for users who are in a specific clan. This is for developing my own leaderboard page with stats pulled from members in a specific clan.
I looked here: http://pastebin.com/GTrVtScf
Also from the above link, what do the extra url parameters mean. There is no definition. For example, what does [e]/[d]/[f] mean in the following:
http://www.bungie.net/platform/Destiny/Stats/Leaderboards/[e]/[d]/[f]/
English
#Bungie
-
There's a few ways to skin this cat, but my recommendation would be GroupServices:GetMembersOfClan. It's paged, but so is everything in groups these days. Platform/Groups/{groupId}/ClanMembers/ Accepts the following querystring parameters: platformType: 1 = XBox, 2 = PSN currentPage: the page # to return memberType: Omit this and you'll get everyone, which I recommend. Otherwise you can filter by whether they're a founder, admin, or just a member. There's also a deprecated sort parameter. Don't bother using it, it's a long story but you can't really choose meaningful sorting options for now. This will return you information both about their bnet membership if it's exposed, and their Destiny account info if it's exposed. You're still subject to privacy checks, so you can't get that info if someone has marked the association as private in their account.