R/MakeURL.R

Defines functions MakeURL

Documented in MakeURL

#' Make the search URL
#'
#' Assembles the search URL from the invstor ID and the type of query
#' @param investorID Investor ID which is the same as the account number
#' @param append string to append at the end of the URL
#' @keywords internal

MakeURL<- function(investorID, append){
    base<-"https://api.lendingclub.com/api/investor/v1/accounts/"
    paste0(base,investorID,"/",append)
    }
kuhnrl30/LendingClub documentation built on Jan. 1, 2020, 6:02 p.m.