def unlink_bank_account(id): """Unlinks a bank account. :param id: The bank id. :type id: str :returns: Information returned from post request. """ url = urls.linked(id, True) data = helper.request_post(url) return(data)
def get_linked_bank_accounts(info=None): """Returns all linked bank accounts. :param info: Will filter the results to get a specific value. :type info: Optional[str] :returns: Returns a list of dictionaries of key/value pairs for each bank. """ url = urls.linked() data = helper.request_get(url, 'results') return(helper.filter(data, info))
def get_bank_account_info(id, info=None): """Returns a single dictionary of bank information :param id: The bank id. :type id: str :param info: Will filter the results to get a specific value. :type info: Optional[str] :returns: Returns a dictinoary of key/value pairs for the bank. If info parameter is provided, \ the value of the key that matches info is extracted. """ url = urls.linked(id) data = helper.request_get(url) return(helper.filter(data, info))