Learn R Programming

impectR (version 2.5.3)

getIterations: Return a dataframe containing all iterations available to the user

Description

Return a dataframe containing all iterations available to the user

Usage

getIterations(token, host = "https://api.impect.com")

Value

a dataframe containing all iterations available to the user

Arguments

token

bearer token

host

host environment

Examples

Run this code
# Toy example: this will error quickly (no API token)
try(events <- getIterations(
  token = "invalid"
))

# Real usage: requires valid Bearer Token from `getAccessToken()`
if (FALSE) {
iterations <- getIterations(
  token = "yourToken"
)
}

Run the code above in your browser using DataLab