{"id":34637777,"url":"https://github.com/lumapps/tap-teamtailor","last_synced_at":"2026-05-27T02:31:53.607Z","repository":{"id":216780365,"uuid":"741951327","full_name":"lumapps/tap-teamtailor","owner":"lumapps","description":"tap-teamtailor a Singer tap for Teamtailor built with the Singer SDK.","archived":false,"fork":false,"pushed_at":"2024-01-15T17:02:00.000Z","size":43,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-12-26T06:07:06.602Z","etag":null,"topics":["singer","teamtailor"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lumapps.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-11T13:00:08.000Z","updated_at":"2024-09-22T22:39:41.000Z","dependencies_parsed_at":"2024-01-12T20:29:13.010Z","dependency_job_id":"b9f13a63-36a2-471b-93f5-c45ed8e3330d","html_url":"https://github.com/lumapps/tap-teamtailor","commit_stats":null,"previous_names":["lumapps/tap-teamtailor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lumapps/tap-teamtailor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lumapps%2Ftap-teamtailor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lumapps%2Ftap-teamtailor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lumapps%2Ftap-teamtailor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lumapps%2Ftap-teamtailor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lumapps","download_url":"https://codeload.github.com/lumapps/tap-teamtailor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lumapps%2Ftap-teamtailor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33548246,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["singer","teamtailor"],"created_at":"2025-12-24T17:08:11.159Z","updated_at":"2026-05-27T02:31:53.591Z","avatar_url":"https://github.com/lumapps.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tap-teamtailor\n\n`tap-teamtailor` is a Singer tap for teamtailor.\n\nBuilt with the [Meltano Tap SDK](https://sdk.meltano.com) for Singer Taps.\n\n## Configuration\n\n### Accepted Config Options\n\nA full list of supported settings and capabilities for this\ntap is available by running:\n\n```bash\ntap-teamtailor --about\n```\n| attribute name | Required | Description                                                               |\n|----------------|----------|---------------------------------------------------------------------------|\n| `api_key`      | True     | The api key to authorize against the API service                          |\n| `api_url`      | False    | The base url for the API service. (default: `https://api.teamtailor.com`) |\n| `api_version`  | False    | The api version for the API service. (default: `20231215`)                |\n\n\n### Configure using environment variables\n\nThis Singer tap will automatically import any environment variables within the working directory's\n`.env` if the `--config=ENV` is provided, such that config values will be considered if a matching\nenvironment variable is set either in the terminal context or in the `.env` file.\n\n### Source Authentication and Authorization\n\nCreate an API key following [the documentation](https://app.teamtailor.com/settings/integrations/api_keys)\n\n## Usage\n\nYou can easily run `tap-teamtailor` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-teamtailor --version\ntap-teamtailor --help\ntap-teamtailor --config CONFIG --discover \u003e ./catalog.json\n```\n\n## Developer Resources\n\n### Initialize your Development Environment\n\n```bash\npipx install poetry\npoetry install\n```\n\n### Create and Run Tests\n\nCreate tests within the `tap_teamtailor/tests` subfolder and\n  then run:\n\n```bash\npoetry run pytest\n```\n\nYou can also test the `tap-teamtailor` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-teamtailor --help\n```\n\n### Testing with [Meltano](https://www.meltano.com)\n\n_**Note:** This tap will work in any Singer environment and does not require Meltano.\nExamples here are for convenience and to streamline end-to-end orchestration scenarios._\n\nYour project comes with a custom `meltano.yml` project file already created. Open the `meltano.yml` and follow any _\"TODO\"_ items listed in\nthe file.\n\nNext, install Meltano (if you haven't already) and any needed plugins:\n\n```bash\n# Install meltano\npipx install meltano\n# Initialize meltano within this directory\ncd tap-teamtailor\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-teamtailor --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-teamtailor target-jsonl\n```\n\n### SDK Dev Guide\n\nSee the [dev guide](https://sdk.meltano.com/en/latest/dev_guide.html) for more instructions on how to use the SDK to \ndevelop your own taps and targets.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flumapps%2Ftap-teamtailor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flumapps%2Ftap-teamtailor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flumapps%2Ftap-teamtailor/lists"}