module Plaid::Client::Followups
Public Instance Methods
followup()
click to toggle source
explicitly for following up after an init to retrieve updated information from Plaid
# File lib/plaid/client/followup.rb, line 7 def followup body = body_retrieve response = self.class.get('/connect', :query => body) handle(response) { PlaidResponse.new(response, "Successfully retrieved Transactions") } end