ZendeskApi_v2.Requests.Users.GetUserIdentitiesAsync C# (CSharp) Method

GetUserIdentitiesAsync() public method

public GetUserIdentitiesAsync ( long userId ) : Task
userId long
return Task
        public async Task<GroupUserIdentityResponse> GetUserIdentitiesAsync(long userId)
        {
            return await GenericGetAsync<GroupUserIdentityResponse>(string.Format("users/{0}/identities.json", userId));
        }