Method: Morpheus::LicenseInterface#uninstall
- Defined in:
- lib/morpheus/api/license_interface.rb
#uninstall(params = {}) ⇒ Object
24 25 26 27 28 |
# File 'lib/morpheus/api/license_interface.rb', line 24 def uninstall(params={}) url = "#{@base_url}/api/license" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } execute(method: :delete, url: url, headers: headers) end |