Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

Company register

Build Status Maintainability Code Coverage

A Ruby interface to the Estonian company register (Äriregister) API.

How to use in test purposes:

CompanyRegister.configure do |config|
  config.username ='username'
  config.password ='password'
  config.test_mode = false
end

c = CompanyRegister::Client.new
c.simple_data(registration_number: '666')

Currently only implements #7 "Rights of representation of all persons related to the company" from
v6 (https://www.rik.ee/sites/www.rik.ee/files/elfinder/article_files/xml_descriptionv6_eng.pdf).

Check [the official API specification of Äriregister](https://www.rik.ee/en/e-business-registry/xml-service) 
for details.