View source: R/getIterations.R
| getIterations | R Documentation |
Return a dataframe containing all iterations available to the user
getIterations(token, host = "https://api.impect.com")
token |
bearer token |
host |
host environment |
a dataframe containing all iterations available to the user
# Toy example: this will error quickly (no API token)
try(events <- getIterations(
token = "invalid"
))
# Real usage: requires valid Bearer Token from `getAccessToken()`
## Not run:
iterations <- getIterations(
token = "yourToken"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.