Retrieves a list of all users for the company designated by the auth token.
Usage
get_users(company_id = Sys.getenv("AW_COMPANY_ID"), limit = 10, page = 0)
Arguments
- company_id
Company ID. If an environment variable called
AW_COMPANY_ID
exists in.Renviron
or elsewhere and nocompany_id
argument is provided, then theAW_COMPANY_ID
value will be used. Useget_me
to get a list of availablecompany_id
values.- limit
The number of results to return per page. This argument works in conjunction with the
page
argument. The default is 10.- page
The "page" of results to display. This works in conjunction with the
limit
argument and is zero-based. For instance, iflimit = 20
andpage = 1
, the results returned would be 21 through 40.