get_table: Bamboo API get request wrapper for BambooHR tables

View source: R/get_table.R

get_tableR Documentation

Bamboo API get request wrapper for BambooHR tables

Description

Submits a get request to retrieve a specified table from the system, valid tables are retreived from the meta data API

Usage

get_table(requested_table_alias = NULL, user = NULL, password = NULL,
  verbose = FALSE)

Arguments

user

Bamboo api user id, register in Bamboo "API Keys"

password

Bamboo login password

verbose

a logical; indicates if detailed output from httr calls should be provided; default FALSE

table_alias

the a alis of the table name requested, must be valid from the meta data API

Value

tbl_df

Author(s)

Evan Downey, edowney@propellerpdx.com

References

https://www.bamboohr.com/api/documentation/, https://github.com/r-lib/httr

Examples


user <- 'your_api_user'
password <- 'your_password'
verbose <- 'your_preference'
table_alias <- 'table_alias'
table_data <- get_table(table_alias=table_alias, user=user, password=password, verbose=verbose)


propellerpdx/bambooR documentation built on July 8, 2023, 4:43 a.m.