module Plaid::Client::Entities
Public Instance Methods
get_entity(entity_id)
click to toggle source
# File lib/plaid/client/entity.rb, line 6 def get_entity(entity_id) body = body_entity(entity_id) response = self.class.get('/entity', :query => body) handle(response) { PlaidResponse.new(response, "Retrieved Entity")} end