Nothing
#' Cancel a scheduled transfer
#'
#' Cancel a scheduled transfer. You can get a listing of
#' scheduled transfers by using the \code{PendingTransfers()}
#' funciton.
#'
#'
#' @param transferId Numeric. Unique ID for the scheduled transfer
#' @inheritParams lc_AccountSummary
#' @export
lc_CancelTransfer<- function(transferId, LC_CRED=NULL){
LC_CRED<-CheckCred(LC_CRED)
postURL<- MakeURL(LC_CRED$investorID,"funds/cancel")
params<- list("transferIds" = list(transferId))
LC_POST(postURL, params, LC_CRED$key)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.