ependichter/xing_api_client

View on GitHub
lib/xing_api_client/call/users_legal_information_call.rb

Summary

Maintainability
A
0 mins
Test Coverage
class XingApiClient
  module Call
    module UsersLegalInformationCall
      def get_users_legal_information(user_id = 'me')
        make_request!(:get, "v1/users/#{user_id}/legal_information", {}, array_keys: ["legal_information"])
      end
    end
  end
end