Skip to content

singer-io/tap-workday-raas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tap-workday-raas

PyPI version CircleCI Build Status

Singer tap that extracts data from a Workday report and produces JSON-formatted data following the Singer spec.

$ mkvirtualenv -p python3 tap-workday-raas
$ pip install tap-workday-raas
$ tap-workday-raas --config config.json --discover
$ tap-workday-raas --config config.json --properties properties.json --state state.json

Quickstart

Install

Clone this repository, and then install using setup.py. We recommend using a virtualenv:

$ virtualenv -p python3 venv
$ source venv/bin/activate
$ pip install -e .

Create Config

Create your tap's config.json file. The tap config file for this tap should include these entries:

  • username - The username of the workday account with access to the reports to extract
  • password - The password of the workday account with access to the reports to extract
  • reports - A JSON string containing a list of objects containing the report_name and report_url. report_name is the name of the stream for the report, and the report_url is the URL to the Workday XML REST link for the report you wish to extract.
{
    "username": "<username>",
    "password": "<password>",
    "reports": "[{\"report_name\": \"abitrary_name\", \"report_url\": \"https://...\"}, ...]"
}

Run Discovery

To run discovery mode, execute the tap with the config file.

> tap-workday-raas --config config.json --discover > properties.json

Sync Data

To sync data, select fields in the properties.json output and run the tap.

> tap-workday-raas --config config.json --properties properties.json [--state state.json]

Copyright © 2020 Stitch

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published