Project

netsol

0.0
No commit activity in last 3 years
No release in over 3 years
A gem to make interacting with NetSol's Partner API less painful
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 0
>= 1.6.8, ~> 1.6
 Project Readme

netsol

This gem provides easy consumption of the NetSol Partners API (Version 6.8)

require 'netsol'

ns = Netsol.new('12345678', 'test_password', :test)
# ns = Netsol.new('12345678', 'live_password', :live)

customers = ns.find_all_customers_for_partner
# => {:nic_handle=>"1234567P", :type=>"Individual", :login_name=>"1234567", :first_name=>"John", :last_name=>"Smith", :user_id=>"1234567"}, ...

domains = ns.find_all_domains_for_partner
# => {:auto_renew=>false, :product_id=>"WN.D.XXXXXXX", :domain_name=>"XXXXXX.COM", :customer_id=>"1234567", :product_type=>"Registration"}, ...