tap-gorgias
is a Singer tap for Gorgias.
Built with the Meltano Tap SDK for Singer Taps.
This tap extracts:
- Tickets (incremental based on the ticket's
updated_datetime
) - Ticket messages (incremental, extracts messages for all tickets retrieved in the ticket parent stream per above conditions)
- Satisfactions surveys (full sync only due to lack of filtering in the API)
pipx install git+https://github.com/brooklyn-data/tap-gorgias.git
subdomain
(<subdomain>.gorgias.com)email_address
(Email address to authenticate with)api_key
(API key generated by the user)start_date
(Date to start syncing tickets and corresponding messages from based on the ticket'supdated_datetime
)
A full list of supported settings and capabilities for this tap is available by running:
tap-gorgias --about
You can easily run tap-gorgias
by itself or in a pipeline using Meltano.
tap-gorgias --version
tap-gorgias --help
tap-gorgias --config CONFIG --discover > ./catalog.json
pipx install poetry
poetry install
Testing with Meltano
Note: This tap will work in any Singer environment and does not require Meltano. Examples here are for convenience and to streamline end-to-end orchestration scenarios.
Install Meltano (if you haven't already) and any needed plugins:
# Install meltano
pipx install meltano
# Initialize meltano within this directory
cd tap-gorgias
meltano install
Now you can test and orchestrate using Meltano:
# Test invocation:
meltano invoke tap-gorgias --version
# OR run a test `elt` pipeline:
meltano elt tap-gorgias target-jsonl
See the dev guide for more instructions on how to use the SDK to develop your own taps and targets.