├── .circleci └── config.yml ├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── config.rb ├── config.ru ├── deploy.sh ├── font-selection.json ├── lib ├── custom_renderer.rb ├── monokai_sublime_slate.rb ├── multilang.rb ├── nesting_unique_head.rb ├── toc_data.rb └── unique_head.rb ├── pull_request_template.md ├── slate.sh ├── source ├── assessment.html.md ├── audit-log.html.md ├── candidate-ingestion.html.md ├── fonts │ ├── lineto-akkurat-bold-s-7b5d084534971febd769e95ead265792.ttf │ ├── lineto-akkurat-bold-s-8f4ce91e6264ca77230354a0845be553.woff │ ├── lineto-akkurat-bold-s-da650f3e5d121ff3584d6d7df703def6.eot │ ├── lineto-akkurat-bold-s.eot │ ├── lineto-akkurat-bold-s.svg │ ├── lineto-akkurat-italic-s-434e19f88099658f499dbee8d1970548.ttf │ ├── lineto-akkurat-italic-s-6fb98b3a904e84e7263caa3bf8025f8c.woff │ ├── lineto-akkurat-italic-s-9ebac37c6822c54672623aed60390877.eot │ ├── lineto-akkurat-italic-s.eot │ ├── lineto-akkurat-italic-s.svg │ ├── lineto-akkurat-light-s-202faa735255e2d3b2d6f740c265f0da.eot │ ├── lineto-akkurat-light-s-60ec22fd8f6ae55d09ba61be82d581c0.woff │ ├── lineto-akkurat-light-s-a0c0731e0942345305d19de3cf08e1ab.ttf │ ├── lineto-akkurat-light-s.eot │ ├── lineto-akkurat-light-s.svg │ ├── lineto-akkurat-regular-s-31392b316fb064a216f2712a77cb26b1.woff │ ├── lineto-akkurat-regular-s-c7a2abb9c5e4fe66bd68bcaebb3da255.ttf │ ├── lineto-akkurat-regular-s-f5a56f4dcccbbb2ffe37313aa0d0cc7a.eot │ ├── lineto-akkurat-regular-s.eot │ ├── lineto-akkurat-regular-s.svg │ ├── slate.eot │ ├── slate.svg │ ├── slate.ttf │ ├── slate.woff │ └── slate.woff2 ├── gho.html.md ├── harvest.html.md ├── images │ ├── add-stage.png │ ├── favicons │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ ├── icon-192.png │ │ ├── icon-512.png │ │ ├── icon.svg │ │ └── manifest.json │ ├── gho │ │ └── api-management.png │ ├── github-mark.png │ ├── logo-footer.png │ ├── logo-green.png │ ├── logo.png │ ├── navbar.png │ ├── prompt.png │ └── send-test.png ├── includes │ ├── _errors.md │ ├── assessment │ │ ├── _errors.md │ │ ├── _introduction.md │ │ ├── _list_tests.md │ │ ├── _patch_completed_test.md │ │ ├── _response_error.md │ │ ├── _send_test.md │ │ └── _test_status.md │ ├── audit-log │ │ ├── _events.md │ │ └── _introduction.md │ ├── candidate-ingestion │ │ ├── _candidates.md │ │ ├── _current_user.md │ │ ├── _errors.md │ │ ├── _introduction.md │ │ ├── _jobs.md │ │ ├── _prospect_pools.md │ │ └── _tracking_link.md │ ├── gho │ │ ├── _api.md │ │ ├── _errors.md │ │ ├── _introduction.md │ │ └── _pagination.md │ ├── harvest │ │ ├── _activity_feed.md │ │ ├── _applications.md │ │ ├── _approvals.md │ │ ├── _candidates.md │ │ ├── _close_reasons.md │ │ ├── _custom_fields.md │ │ ├── _demographic_data.md │ │ ├── _departments.md │ │ ├── _education.md │ │ ├── _eeoc.md │ │ ├── _email_templates.md │ │ ├── _introduction.md │ │ ├── _job_openings.md │ │ ├── _job_posts.md │ │ ├── _job_stages.md │ │ ├── _jobs.md │ │ ├── _offers.md │ │ ├── _offices.md │ │ ├── _prospect_pools.md │ │ ├── _rejection_reasons.md │ │ ├── _scheduled_interviews.md │ │ ├── _scorecards.md │ │ ├── _sources.md │ │ ├── _tags.md │ │ ├── _tracking_links.md │ │ ├── _user_permissions.md │ │ ├── _user_roles.md │ │ └── _users.md │ ├── job-board │ │ ├── _applications.md │ │ ├── _boards.md │ │ ├── _degrees.md │ │ ├── _departments.md │ │ ├── _educations.md │ │ ├── _introduction.md │ │ ├── _jobs.md │ │ ├── _offices.md │ │ └── _sections.md │ ├── onboarding_webhooks │ │ ├── _employee_events.md │ │ └── _introduction.md │ └── webhooks │ │ ├── _application_events.md │ │ ├── _candidate_events.md │ │ ├── _interview_events.md │ │ ├── _introduction.md │ │ ├── _job_events.md │ │ ├── _organization_events.md │ │ └── _other_events.md ├── index.html.md ├── javascripts │ ├── all.js │ ├── all_nosearch.js │ ├── app │ │ ├── _copy.js │ │ ├── _lang.js │ │ ├── _search.js │ │ └── _toc.js │ └── lib │ │ ├── _energize.js │ │ ├── _imagesloaded.min.js │ │ ├── _jquery.highlight.js │ │ ├── _jquery.js │ │ └── _lunr.js ├── job-board.html.md ├── layouts │ ├── _analytics.erb │ ├── _favicons.erb │ ├── home.erb │ └── layout.erb ├── onboarding_webhooks.html.md ├── schemas │ └── tracking_links.json ├── stylesheets │ ├── _fonts.scss │ ├── _icon-font.scss │ ├── _normalize.scss │ ├── _rtl.scss │ ├── _screen.scss │ ├── _variables.scss │ ├── home.css.scss │ ├── print.css.scss │ ├── screen_assessment.css.scss │ ├── screen_audit-log.css.scss │ ├── screen_candidate-ingestion.css.scss │ ├── screen_gho.css.scss │ ├── screen_harvest.css.scss │ ├── screen_job-board.css.scss │ ├── screen_onboarding-webhooks.css.scss │ └── screen_webhooks.css.scss └── webhooks.html.md └── spec ├── spec_helper.rb └── system └── navigation_spec.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.7 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # CODEOWNERS 2 | * @grnhse/integrations-experience 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/Vagrantfile -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/config.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/config.ru -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/deploy.sh -------------------------------------------------------------------------------- /font-selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/font-selection.json -------------------------------------------------------------------------------- /lib/custom_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/lib/custom_renderer.rb -------------------------------------------------------------------------------- /lib/monokai_sublime_slate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/lib/monokai_sublime_slate.rb -------------------------------------------------------------------------------- /lib/multilang.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/lib/multilang.rb -------------------------------------------------------------------------------- /lib/nesting_unique_head.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/lib/nesting_unique_head.rb -------------------------------------------------------------------------------- /lib/toc_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/lib/toc_data.rb -------------------------------------------------------------------------------- /lib/unique_head.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/lib/unique_head.rb -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /slate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/slate.sh -------------------------------------------------------------------------------- /source/assessment.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/assessment.html.md -------------------------------------------------------------------------------- /source/audit-log.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/audit-log.html.md -------------------------------------------------------------------------------- /source/candidate-ingestion.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/candidate-ingestion.html.md -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-bold-s-7b5d084534971febd769e95ead265792.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-bold-s-7b5d084534971febd769e95ead265792.ttf -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-bold-s-8f4ce91e6264ca77230354a0845be553.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-bold-s-8f4ce91e6264ca77230354a0845be553.woff -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-bold-s-da650f3e5d121ff3584d6d7df703def6.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-bold-s-da650f3e5d121ff3584d6d7df703def6.eot -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-bold-s.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-bold-s.eot -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-bold-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-bold-s.svg -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-italic-s-434e19f88099658f499dbee8d1970548.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-italic-s-434e19f88099658f499dbee8d1970548.ttf -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-italic-s-6fb98b3a904e84e7263caa3bf8025f8c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-italic-s-6fb98b3a904e84e7263caa3bf8025f8c.woff -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-italic-s-9ebac37c6822c54672623aed60390877.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-italic-s-9ebac37c6822c54672623aed60390877.eot -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-italic-s.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-italic-s.eot -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-italic-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-italic-s.svg -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-light-s-202faa735255e2d3b2d6f740c265f0da.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-light-s-202faa735255e2d3b2d6f740c265f0da.eot -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-light-s-60ec22fd8f6ae55d09ba61be82d581c0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-light-s-60ec22fd8f6ae55d09ba61be82d581c0.woff -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-light-s-a0c0731e0942345305d19de3cf08e1ab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-light-s-a0c0731e0942345305d19de3cf08e1ab.ttf -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-light-s.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-light-s.eot -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-light-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-light-s.svg -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-regular-s-31392b316fb064a216f2712a77cb26b1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-regular-s-31392b316fb064a216f2712a77cb26b1.woff -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-regular-s-c7a2abb9c5e4fe66bd68bcaebb3da255.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-regular-s-c7a2abb9c5e4fe66bd68bcaebb3da255.ttf -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-regular-s-f5a56f4dcccbbb2ffe37313aa0d0cc7a.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-regular-s-f5a56f4dcccbbb2ffe37313aa0d0cc7a.eot -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-regular-s.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-regular-s.eot -------------------------------------------------------------------------------- /source/fonts/lineto-akkurat-regular-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/lineto-akkurat-regular-s.svg -------------------------------------------------------------------------------- /source/fonts/slate.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/slate.eot -------------------------------------------------------------------------------- /source/fonts/slate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/slate.svg -------------------------------------------------------------------------------- /source/fonts/slate.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/slate.ttf -------------------------------------------------------------------------------- /source/fonts/slate.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/slate.woff -------------------------------------------------------------------------------- /source/fonts/slate.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/fonts/slate.woff2 -------------------------------------------------------------------------------- /source/gho.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/gho.html.md -------------------------------------------------------------------------------- /source/harvest.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/harvest.html.md -------------------------------------------------------------------------------- /source/images/add-stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/add-stage.png -------------------------------------------------------------------------------- /source/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /source/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/favicons/favicon.ico -------------------------------------------------------------------------------- /source/images/favicons/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/favicons/icon-192.png -------------------------------------------------------------------------------- /source/images/favicons/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/favicons/icon-512.png -------------------------------------------------------------------------------- /source/images/favicons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/favicons/icon.svg -------------------------------------------------------------------------------- /source/images/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/favicons/manifest.json -------------------------------------------------------------------------------- /source/images/gho/api-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/gho/api-management.png -------------------------------------------------------------------------------- /source/images/github-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/github-mark.png -------------------------------------------------------------------------------- /source/images/logo-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/logo-footer.png -------------------------------------------------------------------------------- /source/images/logo-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/logo-green.png -------------------------------------------------------------------------------- /source/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/logo.png -------------------------------------------------------------------------------- /source/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/navbar.png -------------------------------------------------------------------------------- /source/images/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/prompt.png -------------------------------------------------------------------------------- /source/images/send-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/images/send-test.png -------------------------------------------------------------------------------- /source/includes/_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/_errors.md -------------------------------------------------------------------------------- /source/includes/assessment/_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/assessment/_errors.md -------------------------------------------------------------------------------- /source/includes/assessment/_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/assessment/_introduction.md -------------------------------------------------------------------------------- /source/includes/assessment/_list_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/assessment/_list_tests.md -------------------------------------------------------------------------------- /source/includes/assessment/_patch_completed_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/assessment/_patch_completed_test.md -------------------------------------------------------------------------------- /source/includes/assessment/_response_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/assessment/_response_error.md -------------------------------------------------------------------------------- /source/includes/assessment/_send_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/assessment/_send_test.md -------------------------------------------------------------------------------- /source/includes/assessment/_test_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/assessment/_test_status.md -------------------------------------------------------------------------------- /source/includes/audit-log/_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/audit-log/_events.md -------------------------------------------------------------------------------- /source/includes/audit-log/_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/audit-log/_introduction.md -------------------------------------------------------------------------------- /source/includes/candidate-ingestion/_candidates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/candidate-ingestion/_candidates.md -------------------------------------------------------------------------------- /source/includes/candidate-ingestion/_current_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/candidate-ingestion/_current_user.md -------------------------------------------------------------------------------- /source/includes/candidate-ingestion/_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/candidate-ingestion/_errors.md -------------------------------------------------------------------------------- /source/includes/candidate-ingestion/_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/candidate-ingestion/_introduction.md -------------------------------------------------------------------------------- /source/includes/candidate-ingestion/_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/candidate-ingestion/_jobs.md -------------------------------------------------------------------------------- /source/includes/candidate-ingestion/_prospect_pools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/candidate-ingestion/_prospect_pools.md -------------------------------------------------------------------------------- /source/includes/candidate-ingestion/_tracking_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/candidate-ingestion/_tracking_link.md -------------------------------------------------------------------------------- /source/includes/gho/_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/gho/_api.md -------------------------------------------------------------------------------- /source/includes/gho/_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/gho/_errors.md -------------------------------------------------------------------------------- /source/includes/gho/_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/gho/_introduction.md -------------------------------------------------------------------------------- /source/includes/gho/_pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/gho/_pagination.md -------------------------------------------------------------------------------- /source/includes/harvest/_activity_feed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_activity_feed.md -------------------------------------------------------------------------------- /source/includes/harvest/_applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_applications.md -------------------------------------------------------------------------------- /source/includes/harvest/_approvals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_approvals.md -------------------------------------------------------------------------------- /source/includes/harvest/_candidates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_candidates.md -------------------------------------------------------------------------------- /source/includes/harvest/_close_reasons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_close_reasons.md -------------------------------------------------------------------------------- /source/includes/harvest/_custom_fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_custom_fields.md -------------------------------------------------------------------------------- /source/includes/harvest/_demographic_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_demographic_data.md -------------------------------------------------------------------------------- /source/includes/harvest/_departments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_departments.md -------------------------------------------------------------------------------- /source/includes/harvest/_education.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_education.md -------------------------------------------------------------------------------- /source/includes/harvest/_eeoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_eeoc.md -------------------------------------------------------------------------------- /source/includes/harvest/_email_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_email_templates.md -------------------------------------------------------------------------------- /source/includes/harvest/_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_introduction.md -------------------------------------------------------------------------------- /source/includes/harvest/_job_openings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_job_openings.md -------------------------------------------------------------------------------- /source/includes/harvest/_job_posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_job_posts.md -------------------------------------------------------------------------------- /source/includes/harvest/_job_stages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_job_stages.md -------------------------------------------------------------------------------- /source/includes/harvest/_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_jobs.md -------------------------------------------------------------------------------- /source/includes/harvest/_offers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_offers.md -------------------------------------------------------------------------------- /source/includes/harvest/_offices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_offices.md -------------------------------------------------------------------------------- /source/includes/harvest/_prospect_pools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_prospect_pools.md -------------------------------------------------------------------------------- /source/includes/harvest/_rejection_reasons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_rejection_reasons.md -------------------------------------------------------------------------------- /source/includes/harvest/_scheduled_interviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_scheduled_interviews.md -------------------------------------------------------------------------------- /source/includes/harvest/_scorecards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_scorecards.md -------------------------------------------------------------------------------- /source/includes/harvest/_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_sources.md -------------------------------------------------------------------------------- /source/includes/harvest/_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_tags.md -------------------------------------------------------------------------------- /source/includes/harvest/_tracking_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_tracking_links.md -------------------------------------------------------------------------------- /source/includes/harvest/_user_permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_user_permissions.md -------------------------------------------------------------------------------- /source/includes/harvest/_user_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_user_roles.md -------------------------------------------------------------------------------- /source/includes/harvest/_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/harvest/_users.md -------------------------------------------------------------------------------- /source/includes/job-board/_applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_applications.md -------------------------------------------------------------------------------- /source/includes/job-board/_boards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_boards.md -------------------------------------------------------------------------------- /source/includes/job-board/_degrees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_degrees.md -------------------------------------------------------------------------------- /source/includes/job-board/_departments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_departments.md -------------------------------------------------------------------------------- /source/includes/job-board/_educations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_educations.md -------------------------------------------------------------------------------- /source/includes/job-board/_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_introduction.md -------------------------------------------------------------------------------- /source/includes/job-board/_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_jobs.md -------------------------------------------------------------------------------- /source/includes/job-board/_offices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_offices.md -------------------------------------------------------------------------------- /source/includes/job-board/_sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/job-board/_sections.md -------------------------------------------------------------------------------- /source/includes/onboarding_webhooks/_employee_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/onboarding_webhooks/_employee_events.md -------------------------------------------------------------------------------- /source/includes/onboarding_webhooks/_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/onboarding_webhooks/_introduction.md -------------------------------------------------------------------------------- /source/includes/webhooks/_application_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/webhooks/_application_events.md -------------------------------------------------------------------------------- /source/includes/webhooks/_candidate_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/webhooks/_candidate_events.md -------------------------------------------------------------------------------- /source/includes/webhooks/_interview_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/webhooks/_interview_events.md -------------------------------------------------------------------------------- /source/includes/webhooks/_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/webhooks/_introduction.md -------------------------------------------------------------------------------- /source/includes/webhooks/_job_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/webhooks/_job_events.md -------------------------------------------------------------------------------- /source/includes/webhooks/_organization_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/includes/webhooks/_organization_events.md -------------------------------------------------------------------------------- /source/includes/webhooks/_other_events.md: -------------------------------------------------------------------------------- 1 | # Other Events 2 | 3 | -------------------------------------------------------------------------------- /source/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/index.html.md -------------------------------------------------------------------------------- /source/javascripts/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/all.js -------------------------------------------------------------------------------- /source/javascripts/all_nosearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/all_nosearch.js -------------------------------------------------------------------------------- /source/javascripts/app/_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/app/_copy.js -------------------------------------------------------------------------------- /source/javascripts/app/_lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/app/_lang.js -------------------------------------------------------------------------------- /source/javascripts/app/_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/app/_search.js -------------------------------------------------------------------------------- /source/javascripts/app/_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/app/_toc.js -------------------------------------------------------------------------------- /source/javascripts/lib/_energize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/lib/_energize.js -------------------------------------------------------------------------------- /source/javascripts/lib/_imagesloaded.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/lib/_imagesloaded.min.js -------------------------------------------------------------------------------- /source/javascripts/lib/_jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/lib/_jquery.highlight.js -------------------------------------------------------------------------------- /source/javascripts/lib/_jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/lib/_jquery.js -------------------------------------------------------------------------------- /source/javascripts/lib/_lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/javascripts/lib/_lunr.js -------------------------------------------------------------------------------- /source/job-board.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/job-board.html.md -------------------------------------------------------------------------------- /source/layouts/_analytics.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/layouts/_analytics.erb -------------------------------------------------------------------------------- /source/layouts/_favicons.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/layouts/_favicons.erb -------------------------------------------------------------------------------- /source/layouts/home.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/layouts/home.erb -------------------------------------------------------------------------------- /source/layouts/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/layouts/layout.erb -------------------------------------------------------------------------------- /source/onboarding_webhooks.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/onboarding_webhooks.html.md -------------------------------------------------------------------------------- /source/schemas/tracking_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/schemas/tracking_links.json -------------------------------------------------------------------------------- /source/stylesheets/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/_fonts.scss -------------------------------------------------------------------------------- /source/stylesheets/_icon-font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/_icon-font.scss -------------------------------------------------------------------------------- /source/stylesheets/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/_normalize.scss -------------------------------------------------------------------------------- /source/stylesheets/_rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/_rtl.scss -------------------------------------------------------------------------------- /source/stylesheets/_screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/_screen.scss -------------------------------------------------------------------------------- /source/stylesheets/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/_variables.scss -------------------------------------------------------------------------------- /source/stylesheets/home.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/home.css.scss -------------------------------------------------------------------------------- /source/stylesheets/print.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/print.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen_assessment.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/screen_assessment.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen_audit-log.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/screen_audit-log.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen_candidate-ingestion.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/screen_candidate-ingestion.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen_gho.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/screen_gho.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen_harvest.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/screen_harvest.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen_job-board.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/screen_job-board.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen_onboarding-webhooks.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/screen_onboarding-webhooks.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen_webhooks.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/stylesheets/screen_webhooks.css.scss -------------------------------------------------------------------------------- /source/webhooks.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/source/webhooks.html.md -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/system/navigation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnhse/greenhouse-api-docs/HEAD/spec/system/navigation_spec.rb --------------------------------------------------------------------------------