namespace CSharp_CODAPI { public class USER { public async Task friendFeed(string gamertag, Platforms platform) { (gamertag, var platformStr, _) = Helpers.mapGamertagToPlatform(gamertag, platform, true); return await Http.sendRequest($"/userfeed/v1/friendFeed/platform/{platformStr}/gamer/{gamertag}/friendFeedEvents/en"); } public async Task eventFeed() { return await Http.sendRequest($"/userfeed/v1/friendFeed/rendered/en/{Http.globalSsoToken}"); } public async Task loggedInIdentities() { return await Http.sendRequest($"/crm/cod/v2/identities/{Http.globalSsoToken}"); } public async Task codPoints(string gamertag, Platforms platform) { (gamertag, var platformStr, _) = Helpers.mapGamertagToPlatform(gamertag, platform, true); return await Http.sendRequest($"/inventory/v1/title/mw/platform/{platformStr}/gamer/{gamertag}/currency"); } public async Task connectedAccounts(string gamertag, Platforms platform) { (gamertag, var platformStr, var lookupType) = Helpers.mapGamertagToPlatform(gamertag, platform, true); return await Http.sendRequest($"/crm/cod/v2/accounts/platform/{platformStr}/{lookupType}/{gamertag}"); } public async Task settings(string gamertag, Platforms platform) { (gamertag, var platformStr, _) = Helpers.mapGamertagToPlatform(gamertag, platform, true); return await Http.sendRequest($"/preferences/v1/platform/{platformStr}/gamer/{gamertag}/list"); } } }