Description Usage Arguments Value Examples
View source: R/device_license.R
Retrieves a list of all device licenses in a profile. Core API call Retrieve a List of Device Licenses
1  | retrieve_all_device_licenses(server_name, profile_id, access_token)
 | 
server_name | 
 String of the iFormBuilder server name.  | 
profile_id | 
 Integer of the iFormBuilder profile ID.  | 
access_token | 
 Access token produced by   | 
Dataframe containing the ID, username, and device_id for all device licenses in a profile
1 2 3 4 5 6 7 8 9 10 11 12 13 14  | ## Not run: 
# Get access_token
access_token <- get_iform_access_token(
  server_name = "your_server_name",
  client_key_name = "your_client_key_name",
  client_secret_name = "your_client_secret_name")
# Retrieve a list of all device licenses in a profile
all_device_license_info <- retrieve_all_device_licenses(
  server_name = "your_server_name",
  profile_id = "your_profile_id",
  access_token = access_token)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.