Module: Catalogcat::Client::Catalogs
- Defined in:
- lib/catalogcat/client/catalogs.rb
Instance Method Summary collapse
- #applicants(params = {}) ⇒ Object
- #completed_certificates(params = {}) ⇒ Object
- #get_order(id, params = {}) ⇒ Object
- #list_catalogs(params = {}) ⇒ Object
Instance Method Details
#applicants(params = {}) ⇒ Object
8 9 10 |
# File 'lib/catalogcat/client/catalogs.rb', line 8 def applicants(params = {}) get('/api/v1/applicants', params) end |
#completed_certificates(params = {}) ⇒ Object
12 13 14 |
# File 'lib/catalogcat/client/catalogs.rb', line 12 def completed_certificates(params = {}) get('/api/v1/completed_certificates', params) end |
#get_order(id, params = {}) ⇒ Object
16 17 18 |
# File 'lib/catalogcat/client/catalogs.rb', line 16 def get_order(id, params = {}) get("/api/v1/orders/#{id}", params) end |
#list_catalogs(params = {}) ⇒ Object
4 5 6 |
# File 'lib/catalogcat/client/catalogs.rb', line 4 def list_catalogs(params = {}) get('/api/v1/catalogs', params) end |