lib/revo/loans_api/client.rb in revo-loans_api-0.0.32 vs lib/revo/loans_api/client.rb in revo-loans_api-0.0.33
- old
+ new
@@ -214,9 +214,13 @@
def get_client(guid:)
make_request(:get, "clients/#{guid}")
end
+ def get_client_info(guid:)
+ make_request(:get, "clients/#{guid}/informers")
+ end
+
def create_virtual_card(token:, term_id:, force_approve: false)
make_request(
:post,
"loan_requests/#{token}/virtual_card",
params: { term_id: term_id, force_approve: force_approve },