Method: Access::Api#find_token

Defined in:
lib/access/api.rb

#find_token(token, options = {}) ⇒ Object



293
294
295
296
297
298
299
# File 'lib/access/api.rb', line 293

def find_token(token, options = {})
  # Internal Admin only Call
  # new verify_other
  request.get("/tokens/#{token}", "token", options) do |response|
    TokenResponse.new(response)
  end
end