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

SetUserIdentityAsPrimary() public method

public SetUserIdentityAsPrimary ( long userId, long identityId ) : GroupUserIdentityResponse
userId long
identityId long
return GroupUserIdentityResponse
        public GroupUserIdentityResponse SetUserIdentityAsPrimary(long userId, long identityId)
        {
            return GenericPut<GroupUserIdentityResponse>(string.Format("users/{0}/identities/{1}/make_primary.json", userId, identityId));
        }