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

GetSpecificUserIdentity() public method

public GetSpecificUserIdentity ( long userId, long identityId ) : IndividualUserIdentityResponse
userId long
identityId long
return IndividualUserIdentityResponse
        public IndividualUserIdentityResponse GetSpecificUserIdentity(long userId, long identityId)
        {
            return GenericGet<IndividualUserIdentityResponse>(string.Format("users/{0}/identities/{1}.json", userId, identityId));
        }