retrieve_all_device_licenses: Retrieve a list of device licenses

Description Usage Arguments Value Examples

View source: R/device_license.R

Description

Retrieves a list of all device licenses in a profile. Core API call Retrieve a List of Device Licenses

Usage

1
retrieve_all_device_licenses(server_name, profile_id, access_token)

Arguments

server_name

String of the iFormBuilder server name.

profile_id

Integer of the iFormBuilder profile ID.

access_token

Access token produced by get_iform_access_token

Value

Dataframe containing the ID, username, and device_id for all device licenses in a profile

Examples

 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)

arestrom/iformr documentation built on Nov. 25, 2021, 11:21 p.m.