https://github.com/internetee/company_register
A Ruby interface to the Estonian company register (Äriregister) API
https://github.com/internetee/company_register
Last synced: about 1 month ago
JSON representation
A Ruby interface to the Estonian company register (Äriregister) API
- Host: GitHub
- URL: https://github.com/internetee/company_register
- Owner: internetee
- License: mit
- Created: 2019-02-02T16:06:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-12-30T14:23:32.000Z (4 months ago)
- Last Synced: 2026-01-03T07:53:31.863Z (4 months ago)
- Language: Ruby
- Size: 82 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Company register
[](https://travis-ci.org/internetee/company_register)
[](https://qlty.sh/gh/internetee/projects/company_register)
[](https://qlty.sh/gh/internetee/projects/company_register)
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.