lib/falconz/apis/key.rb in falconz-1.0.0 vs lib/falconz/apis/key.rb in falconz-1.0.1
- old
+ new
@@ -1,10 +1,11 @@
module Falconz
module APIs
module Key
# return information about the used API key
- def current_key(**options)
- get_request("/key/current", options)
+ # https://www.hybrid-analysis.com/docs/api/v2#/Key/get_key_current
+ def current_key
+ get_request("/key/current")
end
end
end
end