wizehiver is currently a work in progress.
The Zengine API, created by WizeHive, is a cloud-based platform that can organize the collection, review, and management of data and applications for grants and other business processes. The goal of wizehiver is to build functionality to:
- Input and manage Zengine RESTful API tokens
- Get available API resources
- Process API response content into analysis-ready tibbles
The wizehiver package has no relationship or affiliation with, sponsorship, or endorsement by WizeHive.
You can install the development version of wizehiver from GitHub with:
# install.packages("devtools")
devtools::install_github("ivelasq/wizehiver")
Generate a Zengine API personal access token from your Zengine account page.
wizehiver functions will read your Zengine API personal access token or
key from the environment variable ZENGINE_PAT
stored in .Renviron
.
If ZENGINE_PAT
is not stored in .Renviron
, you will be prompted to
edit it. You can also edit .Renviron
by calling the function
set_token()
or set_key()
directly.
To verify your access token or key is stored in .Renviron
, use
function get_token()
or get_key()
.
To obtain the Zengine API data, use get_zen()
. Common choices include
“forms” and “workspaces”. A full list of resources is available
here.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.