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_IDexists in.Renvironor elsewhere and nocompany_idargument is provided, then theAW_COMPANY_IDvalue will be used. Useget_meto get a list of availablecompany_idvalues.- limit
The number of results to return per page. This argument works in conjunction with the
pageargument. The default is 10.- page
The "page" of results to display. This works in conjunction with the
limitargument and is zero-based. For instance, iflimit = 20andpage = 1, the results returned would be 21 through 40.
