Skip to contents

Implements Elite Form's Login using your “X-ApiKey” and your custom Elite Form URL

Usage

EF_CreateAPIToken(url, api_key)

Arguments

url

URL string

api_key

X-ApiKey string

Value

Returns an S4 Object that saves your X-ApiKey and URL and acts as a token for later pulls

Examples

if (FALSE) { # \dontrun{
# Create an API token with your EliteForm URL and API key
token <- EF_CreateAPIToken("https://your.eliteform.com", "your-api-key")

# Access components of the token
token@url
token@api_key
} # }