Skip to contents

Retrieves review information showing user's review history.

Usage

wk_reviews(
  ids = NULL,
  subject_ids = NULL,
  assignment_ids = NULL,
  updated_after = NULL,
  all_pages = FALSE
)

Arguments

ids

Vector of review IDs to retrieve.

subject_ids

Vector of subject IDs to filter reviews by.

assignment_ids

Vector of assignment IDs to filter reviews by.

updated_after

POSIXct datetime to filter reviews updated after this time.

all_pages

Logical indicating whether to fetch all pages (default: FALSE).

Value

A list containing reviews data and pagination information.

Examples

if (FALSE) { # \dontrun{
# Get recent reviews
recent_reviews <- wk_reviews(updated_after = Sys.time() - 86400)

# Get reviews for specific subjects
subject_reviews <- wk_reviews(subject_ids = c(1, 2, 3))
} # }