Get all visits

get_visits(
  account_id = NULL,
  start_date = NULL,
  end_date = NULL,
  lead_id = NULL
)

Arguments

account_id

your account id

start_date

start date (yyyy-mm-dd)

end_date

end date (yyyy-mm-dd)

lead_id

lead id. NULL by default

Value

data frame of all visits for all the leads (by default) or for one specific lead (if lead_id is provided)

Examples

if (FALSE) { get_visits( account_id = "12345", start_date = "2020-11-01", end_date = "2020-11-30" ) }