| getMatches | R Documentation |
Return a dataframe with basic information for all matches for a given iteration ID
getMatches(iteration, token, host = "https://api.impect.com")
iteration |
'IMPECT' iteration ID |
token |
bearer token |
host |
host environment |
a dataframe containing all matches for a given iteration ID
# Toy example: this will error quickly (no API token)
try(matchplan <- getMatches(
iteration = 0,
token = "invalid"
))
# Real usage: requires valid Bearer Token from `getAccessToken()`
## Not run:
matchplan <- getMatches(
iteration = 1004,
token = "yourToken"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.