originally posted in:BungieNetPlatform
If you're just wanting which activities are currently going on,
Platform/Destiny/Advisors/?definitions=true
then check
Response.definitions.activities[Response.data.nightfallActivityHash].skulls
the skulls array has objects like this:
{
"description": "Arc Damage from any source is greatly increased."
"displayName": "Arc Burn"
"icon": "<iconURL>"
}
Though, if you're speaking about historical activities a player has done,
Platform/Destiny/Stats/ActivityHistory/[membershipType]/[accountId]/[characterId]/?lc=en&fmt=true&lcin=true&mode=16&count=20&page=0&definitions=true
this will show the last 20 Nightfall Strikes a character has played (though in testing currently mode=16 returns Nightfalls and Weekly Heroics both with "mode": 17 for some reason... anyways... once you get that data back:
var nightfallHash = Response.data.activities[0].activityDetails.referenceId;
Response.definitions.activities[nightfallHash].skulls
.skulls will get you the array of modifiers on that event in the same format as the /Advisors skulls objects
English
-
When did this get put in?
-
I just had to delete my whole response when I realized YOU were the one that posted these endpoints lol! Sargo Darya's pastebin dump https://www.bungie.net/en/Clan/Post/39966/67395215/0/0 shows that there's a version of the Advisors endpoing on Aug 5th 2014 "/Destiny/[d]/MyAccount/Character/[f]/Advisors/" and your pastebin update on Mar 4th 2015 shows the "/Platform/Destiny/Advisors/ " The Stats/ActivityHistory ep is in both lists. That list has pretty much been my guide for going through the API. Thanks for updating it!
-
Sorry I meant the skulls information. That was not available a couple of weeks ago. I even made a post about it, and the response I got was it wasn't being exposed yet and to stay tuned for updates. I'm kinda hoping there will be an official post / update log that identifies changes in the API data, not unannounced updates that people come across like this :p
-
yeah that'd be really helpful!
-
Thanks a lot! I didn't see the skulls in the activity. That i what I wanted.