tap-paypal customized by Scalefree International GmbH
This is a Singer tap that produces JSON-formatted data following the Singer spec.
This tap:
- Pulls raw data from PayPal
- Extracts the following resources:
- Outputs the schema for each resource
- Incrementally pulls data based on the input state
- Log in to the Developer Dashboard with your PayPal account.
- Under the DASHBOARD menu, select My Apps & Credentials.
- Make sure you're on the Live tab if you want to use the Live environment, to get the Live API credentials.
- Under the App Name column, select Default Application, which PayPal creates with a new Developer Dashboard account. Select Create App if you don't see the default app.
Create a file called paypal_config.json
in your working directory, following config.json.example. The required parameters are the client_id
and secret
. The sandbox parameter determines whether to use the sandbox or live environment.
This requires a state.json
file to let the tap know from when to retrieve data. For example:
{
"bookmarks": {
"paypal_transactions": {
"start_date": "2021-01-01T00:00:00+0000"
}
}
}
Will replicate transaction data from 2021-01-01.
Create a virtual Python environment for this tap. This tap has been tested with Python 3.7, 3.8 and 3.9 and might run on future versions without problems.
python -m venv singer-paypal
singer-paypal/bin/python -m pip install --upgrade pip
singer-paypal/bin/pip install git+https://github.com/Yoast/singer-tap-paypal.git
This tap can be tested by piping the data to a local JSON target. For example:
Create a virtual Python environment with singer-json
python -m venv singer-json
singer-json/bin/python -m pip install --upgrade pip
singer-json/bin/pip install target-json
Test the tap:
singer-paypal/bin/tap-paypal --state state.json -c paypal_config.json | singer-json/bin/target-json >> state_result.json
Copyright © 2021 Yoast