Get all bookmarks in a user collection.

get_all_bookmarks(
  api_token = Sys.getenv("API_TOKEN"),
  tags = NULL,
  start = 0,
  n_results = NULL,
  from_date = NULL,
  to_date = NULL,
  meta = FALSE
)

Arguments

api_token

(chr) api auth token.

tags

(chr vector) List of tags, up to 100 tags.

start

(int) Offset value. Default is 0.

n_results

(int) Number of result to return. Default is all.

from_date

(date) Return only bookmarks after this date. To be formatted as 2020-02-23T12:32:45Z.

to_date

(date) Return only bookmarks before this date. To be formatted as 2020-02-23T12:32:45Z.

meta

(BOOL) Include a change detection signature for each bookmark.

Value

TRUE if successful, error message otherwise.