KosmoKrator

productivity

Greenhouse CLI for AI Agents

Use the Greenhouse CLI from KosmoKrator to call Greenhouse tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Greenhouse CLI Setup

Greenhouse can be configured headlessly with `kosmokrator integrations:configure greenhouse`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure greenhouse --enable --read allow --write ask --json
kosmokrator integrations:doctor greenhouse --json
kosmokrator integrations:status --json

Credentials

Authentication type: oauth client credentials oauth_client_credentials. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

No credentials are required.

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call greenhouse.greenhouse_post_auth_token '{"body":"example_body"}' --json
Provider shortcut
kosmo integrations:greenhouse greenhouse_post_auth_token '{"body":"example_body"}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs greenhouse --json
kosmo integrations:docs greenhouse.greenhouse_post_auth_token --json
kosmo integrations:schema greenhouse.greenhouse_post_auth_token --json
kosmo integrations:search "Greenhouse" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

greenhouse.greenhouse_post_auth_token

generate access_token Official Greenhouse Harvest v3 endpoint: POST /auth/token.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_auth_token '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_auth_token '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_application_stages

List application stages Official Greenhouse Harvest v3 endpoint: GET /v3/application_stages.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, application_ids, job_interview_stage_ids, fields, current
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_application_stages '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","job_interview_stage_ids":"example_job_interview_stage_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_application_stages '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","job_interview_stage_ids":"example_job_interview_stage_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_applications_id_convert_to_candidate

Convert a prospect to a candidate Official Greenhouse Harvest v3 endpoint: POST /v3/applications/{id}/convert_to_candidate.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_applications_id_convert_to_candidate '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_applications_id_convert_to_candidate '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_applications

Create Application Official Greenhouse Harvest v3 endpoint: POST /v3/applications.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_applications '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_applications '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_applications

List applications Official Greenhouse Harvest v3 endpoint: GET /v3/applications.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, candidate_ids, job_ids, prospective_job_ids, job_post_ids, source_ids, referrer_ids, stage_ids, fields, status, custom_field_option_id, last_activity_at, prospect
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_applications '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","candidate_ids":"example_candidate_ids","job_ids":"example_job_ids","prospective_job_ids":"example_prospective_job_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_applications '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","candidate_ids":"example_candidate_ids","job_ids":"example_job_ids","prospective_job_ids":"example_prospective_job_ids"}' --json

greenhouse.greenhouse_delete_v3_applications_id

Delete Application Official Greenhouse Harvest v3 endpoint: DELETE /v3/applications/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_applications_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_applications_id '{"id":"example_id"}' --json

greenhouse.greenhouse_patch_v3_applications_id

Update Applications Official Greenhouse Harvest v3 endpoint: PATCH /v3/applications/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_applications_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_applications_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_applications_id_hire

Mark an application as hire Official Greenhouse Harvest v3 endpoint: POST /v3/applications/{id}/hire.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_applications_id_hire '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_applications_id_hire '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_applications_id_move

Move an application to a different stage within the same job or transfer to another job Official Greenhouse Harvest v3 endpoint: POST /v3/applications/{id}/move.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_applications_id_move '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_applications_id_move '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_applications_id_reject

Reject Application Official Greenhouse Harvest v3 endpoint: POST /v3/applications/{id}/reject.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_applications_id_reject '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_applications_id_reject '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_applications_id_unreject

Unreject Application Official Greenhouse Harvest v3 endpoint: POST /v3/applications/{id}/unreject.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_applications_id_unreject '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_applications_id_unreject '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_applied_candidate_tags

Create Applied Candidate Tag Official Greenhouse Harvest v3 endpoint: POST /v3/applied_candidate_tags.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_applied_candidate_tags '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_applied_candidate_tags '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_applied_candidate_tags

List applied candidate tags Official Greenhouse Harvest v3 endpoint: GET /v3/applied_candidate_tags.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, candidate_tag_ids, candidate_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_applied_candidate_tags '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","candidate_tag_ids":"example_candidate_tag_ids","candidate_ids":"example_candidate_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_applied_candidate_tags '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","candidate_tag_ids":"example_candidate_tag_ids","candidate_ids":"example_candidate_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_delete_v3_applied_candidate_tags_id

Delete Applied Candidate Tag Official Greenhouse Harvest v3 endpoint: DELETE /v3/applied_candidate_tags/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_applied_candidate_tags_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_applied_candidate_tags_id '{"id":"example_id"}' --json

greenhouse.greenhouse_post_v3_approval_flows

Create Approval Flow Official Greenhouse Harvest v3 endpoint: POST /v3/approval_flows.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_approval_flows '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_approval_flows '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_approval_flows

List approval flows Official Greenhouse Harvest v3 endpoint: GET /v3/approval_flows.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, offer_ids, fields, approval_type
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_approval_flows '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","offer_ids":"example_offer_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_approval_flows '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","offer_ids":"example_offer_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_put_v3_approval_flows_id_replace_approver_groups

Replace Approver Groups Official Greenhouse Harvest v3 endpoint: PUT /v3/approval_flows/{id}/replace_approver_groups.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_put_v3_approval_flows_id_replace_approver_groups '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_put_v3_approval_flows_id_replace_approver_groups '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_approval_flows_id_request_approvals

Request Approvals Official Greenhouse Harvest v3 endpoint: POST /v3/approval_flows/{id}/request_approvals.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_approval_flows_id_request_approvals '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_approval_flows_id_request_approvals '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_patch_v3_approval_flows_id

Update Approval Flow Official Greenhouse Harvest v3 endpoint: PATCH /v3/approval_flows/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_approval_flows_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_approval_flows_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_approver_groups

List approver groups Official Greenhouse Harvest v3 endpoint: GET /v3/approver_groups.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, approval_flow_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_approver_groups '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","approval_flow_ids":"example_approval_flow_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_approver_groups '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","approval_flow_ids":"example_approval_flow_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_put_v3_approver_groups_id_replace_approver

Replace Approver Official Greenhouse Harvest v3 endpoint: PUT /v3/approver_groups/{id}/replace_approver.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_put_v3_approver_groups_id_replace_approver '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_put_v3_approver_groups_id_replace_approver '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_approvers

List approvers Official Greenhouse Harvest v3 endpoint: GET /v3/approvers.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, approver_group_ids, user_ids, fields, status
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_approvers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","approver_group_ids":"example_approver_group_ids","user_ids":"example_user_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_approvers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","approver_group_ids":"example_approver_group_ids","user_ids":"example_user_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_attachments

Create Attachment Official Greenhouse Harvest v3 endpoint: POST /v3/attachments.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_attachments '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_attachments '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_attachments

List attachments Official Greenhouse Harvest v3 endpoint: GET /v3/attachments.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, application_ids, candidate_ids, fields, type
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_attachments '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","candidate_ids":"example_candidate_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_attachments '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","candidate_ids":"example_candidate_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_delete_v3_attachments_id

Delete Attachment Official Greenhouse Harvest v3 endpoint: DELETE /v3/attachments/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_attachments_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_attachments_id '{"id":"example_id"}' --json

greenhouse.greenhouse_get_v3_bulk_requests

Bulk requests Official Greenhouse Harvest v3 endpoint: GET /v3/bulk_requests.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, bulk_action_uuid, active
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_bulk_requests '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","bulk_action_uuid":"example_bulk_action_uuid","active":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_bulk_requests '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","bulk_action_uuid":"example_bulk_action_uuid","active":true}' --json

greenhouse.greenhouse_get_v3_bulk_requests_abc_123_def_456

Bulk requests Official Greenhouse Harvest v3 endpoint: GET /v3/bulk_requests/abc-123-def-456.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, bulk_action_uuid
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_bulk_requests_abc_123_def_456 '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","bulk_action_uuid":"example_bulk_action_uuid"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_bulk_requests_abc_123_def_456 '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","bulk_action_uuid":"example_bulk_action_uuid"}' --json

greenhouse.greenhouse_get_v3_candidate_attribute_types

List candidate attribute types Official Greenhouse Harvest v3 endpoint: GET /v3/candidate_attribute_types.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, active, is_draft
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_candidate_attribute_types '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","active":true,"is_draft":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_candidate_attribute_types '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","active":true,"is_draft":true}' --json

greenhouse.greenhouse_post_v3_candidate_educations

Create Candidate Education Official Greenhouse Harvest v3 endpoint: POST /v3/candidate_educations.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_candidate_educations '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_candidate_educations '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_candidate_educations

List candidate educations Official Greenhouse Harvest v3 endpoint: GET /v3/candidate_educations.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, candidate_ids, fields, start_at, end_at, latest
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_candidate_educations '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","candidate_ids":"example_candidate_ids","fields":"example_fields","start_at":"example_start_at"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_candidate_educations '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","candidate_ids":"example_candidate_ids","fields":"example_fields","start_at":"example_start_at"}' --json

greenhouse.greenhouse_delete_v3_candidate_educations_id

Delete Candidate Education Official Greenhouse Harvest v3 endpoint: DELETE /v3/candidate_educations/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_candidate_educations_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_candidate_educations_id '{"id":"example_id"}' --json

greenhouse.greenhouse_post_v3_candidate_employments

Create Candidate Employment Official Greenhouse Harvest v3 endpoint: POST /v3/candidate_employments.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_candidate_employments '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_candidate_employments '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_candidate_employments

List candidate employments Official Greenhouse Harvest v3 endpoint: GET /v3/candidate_employments.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, candidate_ids, fields, latest
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_candidate_employments '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","candidate_ids":"example_candidate_ids","fields":"example_fields","latest":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_candidate_employments '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","candidate_ids":"example_candidate_ids","fields":"example_fields","latest":true}' --json

greenhouse.greenhouse_delete_v3_candidate_employments_id

Delete Candidate Employments Official Greenhouse Harvest v3 endpoint: DELETE /v3/candidate_employments/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_candidate_employments_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_candidate_employments_id '{"id":"example_id"}' --json

greenhouse.greenhouse_post_v3_candidate_tags

Create Candidate Tag Official Greenhouse Harvest v3 endpoint: POST /v3/candidate_tags.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_candidate_tags '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_candidate_tags '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_candidate_tags

List candidate tags Official Greenhouse Harvest v3 endpoint: GET /v3/candidate_tags.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_candidate_tags '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_candidate_tags '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json

greenhouse.greenhouse_delete_v3_candidate_tags_id

Delete Candidate Tags Official Greenhouse Harvest v3 endpoint: DELETE /v3/candidate_tags/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_candidate_tags_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_candidate_tags_id '{"id":"example_id"}' --json

greenhouse.greenhouse_patch_v3_candidates_id_anonymize

Anonymize Candidates Official Greenhouse Harvest v3 endpoint: PATCH /v3/candidates/{id}/anonymize.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_candidates_id_anonymize '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_candidates_id_anonymize '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_candidates

Create Candidate Official Greenhouse Harvest v3 endpoint: POST /v3/candidates.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_candidates '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_candidates '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_candidates

List candidates Official Greenhouse Harvest v3 endpoint: GET /v3/candidates.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, last_activity_at, custom_field_option_id, private, email, tag
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_candidates '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","last_activity_at":"example_last_activity_at","custom_field_option_id":1}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_candidates '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","last_activity_at":"example_last_activity_at","custom_field_option_id":1}' --json

greenhouse.greenhouse_delete_v3_candidates_id

Delete Candidate Official Greenhouse Harvest v3 endpoint: DELETE /v3/candidates/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_candidates_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_candidates_id '{"id":"example_id"}' --json

greenhouse.greenhouse_patch_v3_candidates_id

Update Candidates Official Greenhouse Harvest v3 endpoint: PATCH /v3/candidates/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_candidates_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_candidates_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_candidates_id_merge

Merge Candidates Official Greenhouse Harvest v3 endpoint: POST /v3/candidates/{id}/merge.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_candidates_id_merge '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_candidates_id_merge '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_close_reasons

List close reasons Official Greenhouse Harvest v3 endpoint: GET /v3/close_reasons.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_close_reasons '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_close_reasons '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_custom_field_departments

Create Custom Field Department Official Greenhouse Harvest v3 endpoint: POST /v3/custom_field_departments.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_custom_field_departments '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_custom_field_departments '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_custom_field_departments

List custom field departments Official Greenhouse Harvest v3 endpoint: GET /v3/custom_field_departments.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, custom_field_ids, department_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_custom_field_departments '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","custom_field_ids":"example_custom_field_ids","department_ids":"example_department_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_custom_field_departments '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","custom_field_ids":"example_custom_field_ids","department_ids":"example_department_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_delete_v3_custom_field_departments_id

Delete Custom Field Department Official Greenhouse Harvest v3 endpoint: DELETE /v3/custom_field_departments/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_custom_field_departments_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_custom_field_departments_id '{"id":"example_id"}' --json

greenhouse.greenhouse_post_v3_custom_field_offices

Create Custom Field Office Official Greenhouse Harvest v3 endpoint: POST /v3/custom_field_offices.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_custom_field_offices '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_custom_field_offices '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_custom_field_offices

List custom field offices Official Greenhouse Harvest v3 endpoint: GET /v3/custom_field_offices.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, custom_field_ids, office_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_custom_field_offices '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","custom_field_ids":"example_custom_field_ids","office_ids":"example_office_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_custom_field_offices '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","custom_field_ids":"example_custom_field_ids","office_ids":"example_office_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_delete_v3_custom_field_offices_id

Delete Custom Field Office Official Greenhouse Harvest v3 endpoint: DELETE /v3/custom_field_offices/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_custom_field_offices_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_custom_field_offices_id '{"id":"example_id"}' --json

greenhouse.greenhouse_post_v3_custom_field_options

Create Custom Field Option Official Greenhouse Harvest v3 endpoint: POST /v3/custom_field_options.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_custom_field_options '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_custom_field_options '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_custom_field_options

List custom field options Official Greenhouse Harvest v3 endpoint: GET /v3/custom_field_options.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, custom_field_ids, fields, active, custom_field_key
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_custom_field_options '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","custom_field_ids":"example_custom_field_ids","fields":"example_fields","active":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_custom_field_options '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","custom_field_ids":"example_custom_field_ids","fields":"example_fields","active":true}' --json

greenhouse.greenhouse_patch_v3_custom_field_options_id

Update Custom Field Options Official Greenhouse Harvest v3 endpoint: PATCH /v3/custom_field_options/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_custom_field_options_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_custom_field_options_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_delete_v3_custom_field_options_id

Delete Custom Field Option Official Greenhouse Harvest v3 endpoint: DELETE /v3/custom_field_options/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_custom_field_options_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_custom_field_options_id '{"id":"example_id"}' --json

greenhouse.greenhouse_post_v3_custom_fields

Create Custom Field Official Greenhouse Harvest v3 endpoint: POST /v3/custom_fields.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_custom_fields '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_custom_fields '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_custom_fields

List custom fields Official Greenhouse Harvest v3 endpoint: GET /v3/custom_fields.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, field_type, active, name, name_key
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_custom_fields '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","field_type":"example_field_type","active":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_custom_fields '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","field_type":"example_field_type","active":true}' --json

greenhouse.greenhouse_delete_v3_custom_fields_id

Delete Custom Field Official Greenhouse Harvest v3 endpoint: DELETE /v3/custom_fields/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_custom_fields_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_custom_fields_id '{"id":"example_id"}' --json

greenhouse.greenhouse_patch_v3_custom_fields_id

Update Custom Fields Official Greenhouse Harvest v3 endpoint: PATCH /v3/custom_fields/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_custom_fields_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_custom_fields_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_default_interviewers

List default interviewers Official Greenhouse Harvest v3 endpoint: GET /v3/default_interviewers.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, user_ids, interview_kit_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_default_interviewers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","interview_kit_ids":"example_interview_kit_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_default_interviewers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","interview_kit_ids":"example_interview_kit_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_get_v3_demographic_answer_options

List demographic answer options Official Greenhouse Harvest v3 endpoint: GET /v3/demographic_answer_options.

Read read
Parameters
cursor, per_page, ids, demographic_question_ids, fields, active
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_demographic_answer_options '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","demographic_question_ids":"example_demographic_question_ids","fields":"example_fields","active":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_demographic_answer_options '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","demographic_question_ids":"example_demographic_question_ids","fields":"example_fields","active":true}' --json

greenhouse.greenhouse_get_v3_demographic_answers

List demographic answers Official Greenhouse Harvest v3 endpoint: GET /v3/demographic_answers.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, application_ids, demographic_question_ids, demographic_answer_option_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_demographic_answers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","demographic_question_ids":"example_demographic_question_ids","demographic_answer_option_ids":"example_demographic_answer_option_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_demographic_answers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","demographic_question_ids":"example_demographic_question_ids","demographic_answer_option_ids":"example_demographic_answer_option_ids"}' --json

greenhouse.greenhouse_get_v3_demographic_question_sets

List demographic question sets Official Greenhouse Harvest v3 endpoint: GET /v3/demographic_question_sets.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, active, enabled
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_demographic_question_sets '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","active":true,"enabled":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_demographic_question_sets '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","active":true,"enabled":true}' --json

greenhouse.greenhouse_get_v3_demographic_questions

List demographic questions Official Greenhouse Harvest v3 endpoint: GET /v3/demographic_questions.

Read read
Parameters
cursor, per_page, ids, demographic_question_set_ids, fields, active, required
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_demographic_questions '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","demographic_question_set_ids":"example_demographic_question_set_ids","fields":"example_fields","active":true,"required":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_demographic_questions '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","demographic_question_set_ids":"example_demographic_question_set_ids","fields":"example_fields","active":true,"required":true}' --json

greenhouse.greenhouse_post_v3_departments

Create Department Official Greenhouse Harvest v3 endpoint: POST /v3/departments.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_departments '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_departments '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_departments

List departments Official Greenhouse Harvest v3 endpoint: GET /v3/departments.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, parent_id, external_id
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_departments '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","parent_id":1,"external_id":"example_external_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_departments '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","parent_id":1,"external_id":"example_external_id"}' --json

greenhouse.greenhouse_patch_v3_departments_id

Update Department Official Greenhouse Harvest v3 endpoint: PATCH /v3/departments/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_departments_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_departments_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_eeoc

List EEOC Official Greenhouse Harvest v3 endpoint: GET /v3/eeoc.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, application_ids, fields, submitted_at
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_eeoc '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","fields":"example_fields","submitted_at":"example_submitted_at"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_eeoc '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","fields":"example_fields","submitted_at":"example_submitted_at"}' --json

greenhouse.greenhouse_get_v3_email_templates

List email templates Official Greenhouse Harvest v3 endpoint: GET /v3/email_templates.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, email_type, from_type
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_email_templates '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","email_type":"example_email_type","from_type":"example_from_type"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_email_templates '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","email_type":"example_email_type","from_type":"example_from_type"}' --json

greenhouse.greenhouse_get_v3_focus_candidate_attributes

List focus candidate attributes Official Greenhouse Harvest v3 endpoint: GET /v3/focus_candidate_attributes.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, interview_kit_ids, job_candidate_attribute_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_focus_candidate_attributes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","interview_kit_ids":"example_interview_kit_ids","job_candidate_attribute_ids":"example_job_candidate_attribute_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_focus_candidate_attributes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","interview_kit_ids":"example_interview_kit_ids","job_candidate_attribute_ids":"example_job_candidate_attribute_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_future_job_permissions

Create Future Job Permission Official Greenhouse Harvest v3 endpoint: POST /v3/future_job_permissions.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_future_job_permissions '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_future_job_permissions '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_future_job_permissions

List future job permissions Official Greenhouse Harvest v3 endpoint: GET /v3/future_job_permissions.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, department_ids, office_ids, user_ids, role_ids, fields, external_department_id, external_office_id
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_future_job_permissions '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","department_ids":"example_department_ids","office_ids":"example_office_ids","user_ids":"example_user_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_future_job_permissions '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","department_ids":"example_department_ids","office_ids":"example_office_ids","user_ids":"example_user_ids"}' --json

greenhouse.greenhouse_delete_v3_future_job_permissions_id

Delete Future Job Permission Official Greenhouse Harvest v3 endpoint: DELETE /v3/future_job_permissions/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_future_job_permissions_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_future_job_permissions_id '{"id":"example_id"}' --json

greenhouse.greenhouse_get_v3_interview_kits

List interview kits Official Greenhouse Harvest v3 endpoint: GET /v3/interview_kits.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, job_interview_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_interview_kits '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","job_interview_ids":"example_job_interview_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_interview_kits '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","job_interview_ids":"example_job_interview_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_get_v3_interviewer_tags

List interviewer tags Official Greenhouse Harvest v3 endpoint: GET /v3/interviewer_tags.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_interviewer_tags '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_interviewer_tags '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json

greenhouse.greenhouse_get_v3_interviewers

List interviewers Official Greenhouse Harvest v3 endpoint: GET /v3/interviewers.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, interview_ids, user_ids, scorecard_ids, fields, response_status
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_interviewers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","interview_ids":"example_interview_ids","user_ids":"example_user_ids","scorecard_ids":"example_scorecard_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_interviewers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","interview_ids":"example_interview_ids","user_ids":"example_user_ids","scorecard_ids":"example_scorecard_ids"}' --json

greenhouse.greenhouse_post_v3_interviews

Create Interview Official Greenhouse Harvest v3 endpoint: POST /v3/interviews.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_interviews '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_interviews '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_interviews

List interviews Official Greenhouse Harvest v3 endpoint: GET /v3/interviews.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, application_ids, job_interview_ids, organizer_ids, fields, starts_at, ends_at, all_day_start_on, all_day_end_on, external_event_id, status
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_interviews '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","application_ids":"example_application_ids","job_interview_ids":"example_job_interview_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_interviews '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","application_ids":"example_application_ids","job_interview_ids":"example_job_interview_ids"}' --json

greenhouse.greenhouse_delete_v3_interviews_id

Delete Interview Official Greenhouse Harvest v3 endpoint: DELETE /v3/interviews/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_interviews_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_interviews_id '{"id":"example_id"}' --json

greenhouse.greenhouse_patch_v3_interviews_id

Update Interviews Official Greenhouse Harvest v3 endpoint: PATCH /v3/interviews/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_interviews_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_interviews_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_job_board_custom_locations

List job board custom locations Official Greenhouse Harvest v3 endpoint: GET /v3/job_board_custom_locations.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, greenhouse_job_board_ids, fields, active
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_board_custom_locations '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","greenhouse_job_board_ids":"example_greenhouse_job_board_ids","fields":"example_fields","active":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_board_custom_locations '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","greenhouse_job_board_ids":"example_greenhouse_job_board_ids","fields":"example_fields","active":true}' --json

greenhouse.greenhouse_get_v3_job_candidate_attributes

List job candidate attributes Official Greenhouse Harvest v3 endpoint: GET /v3/job_candidate_attributes.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, candidate_attribute_type_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_candidate_attributes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","candidate_attribute_type_ids":"example_candidate_attribute_type_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_candidate_attributes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","candidate_attribute_type_ids":"example_candidate_attribute_type_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_job_hiring_managers

Create Job Hiring Manager Official Greenhouse Harvest v3 endpoint: POST /v3/job_hiring_managers.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_job_hiring_managers '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_job_hiring_managers '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_job_hiring_managers

List job hiring managers Official Greenhouse Harvest v3 endpoint: GET /v3/job_hiring_managers.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, user_ids, job_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_hiring_managers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","job_ids":"example_job_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_hiring_managers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","job_ids":"example_job_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_delete_v3_job_hiring_managers_id

Delete Job Hiring Manager Official Greenhouse Harvest v3 endpoint: DELETE /v3/job_hiring_managers/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_job_hiring_managers_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_job_hiring_managers_id '{"id":"example_id"}' --json

greenhouse.greenhouse_get_v3_job_interview_stages

List job interview stages Official Greenhouse Harvest v3 endpoint: GET /v3/job_interview_stages.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, fields, active
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_interview_stages '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","fields":"example_fields","active":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_interview_stages '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","fields":"example_fields","active":true}' --json

greenhouse.greenhouse_get_v3_job_interviews

List job interviews Official Greenhouse Harvest v3 endpoint: GET /v3/job_interviews.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_interview_stage_ids, job_ids, fields, active, scheduling_type
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_interviews '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_interview_stage_ids":"example_job_interview_stage_ids","job_ids":"example_job_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_interviews '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_interview_stage_ids":"example_job_interview_stage_ids","job_ids":"example_job_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_job_notes

Create Job Note Official Greenhouse Harvest v3 endpoint: POST /v3/job_notes.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_job_notes '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_job_notes '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_job_notes

List job notes Official Greenhouse Harvest v3 endpoint: GET /v3/job_notes.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, user_ids, fields, visibility
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_notes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","user_ids":"example_user_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_notes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","user_ids":"example_user_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_delete_v3_job_notes_id

Delete Job Note Official Greenhouse Harvest v3 endpoint: DELETE /v3/job_notes/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_job_notes_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_job_notes_id '{"id":"example_id"}' --json

greenhouse.greenhouse_patch_v3_job_notes_id

Update Job Notes Official Greenhouse Harvest v3 endpoint: PATCH /v3/job_notes/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_job_notes_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_job_notes_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_job_owners

Create Job Owner Official Greenhouse Harvest v3 endpoint: POST /v3/job_owners.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_job_owners '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_job_owners '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_job_owners

List job owners Official Greenhouse Harvest v3 endpoint: GET /v3/job_owners.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, user_ids, job_ids, fields, type
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_owners '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","job_ids":"example_job_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_owners '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","job_ids":"example_job_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_delete_v3_job_owners_id

Delete Job Owner Official Greenhouse Harvest v3 endpoint: DELETE /v3/job_owners/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_job_owners_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_job_owners_id '{"id":"example_id"}' --json

greenhouse.greenhouse_post_v3_job_post_locations

Create Job Post Location Official Greenhouse Harvest v3 endpoint: POST /v3/job_post_locations.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_job_post_locations '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_job_post_locations '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_job_post_locations

List job post locations Official Greenhouse Harvest v3 endpoint: GET /v3/job_post_locations.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, office_ids, job_post_ids, custom_location_ids, fields, type, plain_text_location
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_post_locations '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","office_ids":"example_office_ids","job_post_ids":"example_job_post_ids","custom_location_ids":"example_custom_location_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_post_locations '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","office_ids":"example_office_ids","job_post_ids":"example_job_post_ids","custom_location_ids":"example_custom_location_ids"}' --json

greenhouse.greenhouse_delete_v3_job_post_locations_id

Delete Job Post Location Official Greenhouse Harvest v3 endpoint: DELETE /v3/job_post_locations/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_job_post_locations_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_job_post_locations_id '{"id":"example_id"}' --json

greenhouse.greenhouse_get_v3_job_posts

List job posts Official Greenhouse Harvest v3 endpoint: GET /v3/job_posts.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, job_board_ids, fields, active, featured, live, internal
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_job_posts '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","job_board_ids":"example_job_board_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_job_posts '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","job_board_ids":"example_job_board_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_patch_v3_job_posts_id

Update Job Posts Official Greenhouse Harvest v3 endpoint: PATCH /v3/job_posts/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_job_posts_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_job_posts_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_jobs

Create job Official Greenhouse Harvest v3 endpoint: POST /v3/jobs.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_jobs '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_jobs '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_jobs

List jobs Official Greenhouse Harvest v3 endpoint: GET /v3/jobs.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, opened_at, closed_at, requisition_id, department_id, office_id, custom_field_option_id, confidential, status
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_jobs '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","opened_at":"example_opened_at","closed_at":"example_closed_at"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_jobs '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","opened_at":"example_opened_at","closed_at":"example_closed_at"}' --json

greenhouse.greenhouse_patch_v3_jobs_id

Update Job Official Greenhouse Harvest v3 endpoint: PATCH /v3/jobs/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_jobs_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_jobs_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_notes

Create Note Official Greenhouse Harvest v3 endpoint: POST /v3/notes.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_notes '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_notes '{"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_offers

Create Offer Official Greenhouse Harvest v3 endpoint: POST /v3/offers.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_offers '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_offers '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_offers

List offers Official Greenhouse Harvest v3 endpoint: GET /v3/offers.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, application_ids, job_ids, candidate_ids, opening_ids, fields, current_only, custom_field_option_id, status, resolved_at, sent_on, starts_on
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_offers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","job_ids":"example_job_ids","candidate_ids":"example_candidate_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_offers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","job_ids":"example_job_ids","candidate_ids":"example_candidate_ids"}' --json

greenhouse.greenhouse_patch_v3_offers_id

Update Offers Official Greenhouse Harvest v3 endpoint: PATCH /v3/offers/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_offers_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_offers_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_offices

Create Office Official Greenhouse Harvest v3 endpoint: POST /v3/offices.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_offices '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_offices '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_offices

List offices Official Greenhouse Harvest v3 endpoint: GET /v3/offices.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, parent_id, external_id
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_offices '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","parent_id":1,"external_id":"example_external_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_offices '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","parent_id":1,"external_id":"example_external_id"}' --json

greenhouse.greenhouse_patch_v3_offices_id

Update Office Official Greenhouse Harvest v3 endpoint: PATCH /v3/offices/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_offices_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_offices_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_openings

Create Opening Official Greenhouse Harvest v3 endpoint: POST /v3/openings.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_openings '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_openings '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_openings

List openings Official Greenhouse Harvest v3 endpoint: GET /v3/openings.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, application_ids, close_reason_ids, fields, opened_at, closed_at, custom_field_option_id, open, opening_id
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_openings '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","application_ids":"example_application_ids","close_reason_ids":"example_close_reason_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_openings '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","application_ids":"example_application_ids","close_reason_ids":"example_close_reason_ids"}' --json

greenhouse.greenhouse_delete_v3_openings_id

Delete Openings Official Greenhouse Harvest v3 endpoint: DELETE /v3/openings/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_openings_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_openings_id '{"id":"example_id"}' --json

greenhouse.greenhouse_patch_v3_openings_id

Update Openings Official Greenhouse Harvest v3 endpoint: PATCH /v3/openings/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_openings_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_openings_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_prospect_details

List prospect details Official Greenhouse Harvest v3 endpoint: GET /v3/prospect_details.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, application_ids, pool_ids, pool_stage_ids, prospect_owner_ids, department_ids, office_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_prospect_details '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","pool_ids":"example_pool_ids","pool_stage_ids":"example_pool_stage_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_prospect_details '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","pool_ids":"example_pool_ids","pool_stage_ids":"example_pool_stage_ids"}' --json

greenhouse.greenhouse_get_v3_prospect_pool_stages

List prospect pool stages Official Greenhouse Harvest v3 endpoint: GET /v3/prospect_pool_stages.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, prospect_pool_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_prospect_pool_stages '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","prospect_pool_ids":"example_prospect_pool_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_prospect_pool_stages '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","prospect_pool_ids":"example_prospect_pool_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_get_v3_prospect_pools

List prospect pools Official Greenhouse Harvest v3 endpoint: GET /v3/prospect_pools.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, department_ids, office_ids, job_ids, fields, active
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_prospect_pools '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","department_ids":"example_department_ids","office_ids":"example_office_ids","job_ids":"example_job_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_prospect_pools '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","department_ids":"example_department_ids","office_ids":"example_office_ids","job_ids":"example_job_ids"}' --json

greenhouse.greenhouse_get_v3_referrers

List referrers Official Greenhouse Harvest v3 endpoint: GET /v3/referrers.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, user_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_referrers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_referrers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_get_v3_rejection_details

List rejection details Official Greenhouse Harvest v3 endpoint: GET /v3/rejection_details.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, application_ids, rejection_reason_ids, fields, custom_field_option_id
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_rejection_details '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","rejection_reason_ids":"example_rejection_reason_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_rejection_details '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","application_ids":"example_application_ids","rejection_reason_ids":"example_rejection_reason_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_patch_v3_rejection_details_id

Update Rejection Details Official Greenhouse Harvest v3 endpoint: PATCH /v3/rejection_details/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_rejection_details_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_rejection_details_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_rejection_reasons

List rejection reasons Official Greenhouse Harvest v3 endpoint: GET /v3/rejection_reasons.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, include_defaults
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_rejection_reasons '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","include_defaults":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_rejection_reasons '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","include_defaults":true}' --json

greenhouse.greenhouse_get_v3_scorecard_candidate_attributes

List scorecard candidate attributes Official Greenhouse Harvest v3 endpoint: GET /v3/scorecard_candidate_attributes.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, scorecard_ids, job_candidate_attribute_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_scorecard_candidate_attributes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_ids":"example_scorecard_ids","job_candidate_attribute_ids":"example_job_candidate_attribute_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_scorecard_candidate_attributes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_ids":"example_scorecard_ids","job_candidate_attribute_ids":"example_job_candidate_attribute_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_scorecard_candidate_attributes

Create scorecard candidate attributes - **restricted** Official Greenhouse Harvest v3 endpoint: POST /v3/scorecard_candidate_attributes.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_scorecard_candidate_attributes '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_scorecard_candidate_attributes '{"body":"example_body"}' --json

greenhouse.greenhouse_patch_v3_scorecard_candidate_attributes_id

Updates scorecard candidate attributes - **restricted** Official Greenhouse Harvest v3 endpoint: PATCH /v3/scorecard_candidate_attributes/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_scorecard_candidate_attributes_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_scorecard_candidate_attributes_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_scorecard_question_answer_options

List scorecard question answer options Official Greenhouse Harvest v3 endpoint: GET /v3/scorecard_question_answer_options.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, scorecard_question_option_ids, scorecard_question_answer_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_scorecard_question_answer_options '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_question_option_ids":"example_scorecard_question_option_ids","scorecard_question_answer_ids":"example_scorecard_question_answer_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_scorecard_question_answer_options '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_question_option_ids":"example_scorecard_question_option_ids","scorecard_question_answer_ids":"example_scorecard_question_answer_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_scorecard_question_answer_options

Create scorecard question answer options Official Greenhouse Harvest v3 endpoint: POST /v3/scorecard_question_answer_options.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_scorecard_question_answer_options '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_scorecard_question_answer_options '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_scorecard_question_answers

List scorecard question answers Official Greenhouse Harvest v3 endpoint: GET /v3/scorecard_question_answers.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, scorecard_ids, scorecard_question_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_scorecard_question_answers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_ids":"example_scorecard_ids","scorecard_question_ids":"example_scorecard_question_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_scorecard_question_answers '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_ids":"example_scorecard_ids","scorecard_question_ids":"example_scorecard_question_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_scorecard_question_answers

Create scorecard question answers - **restricted** Official Greenhouse Harvest v3 endpoint: POST /v3/scorecard_question_answers.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_scorecard_question_answers '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_scorecard_question_answers '{"body":"example_body"}' --json

greenhouse.greenhouse_patch_v3_scorecard_question_answers_id

Update scorecard question answers - **restricted** Official Greenhouse Harvest v3 endpoint: PATCH /v3/scorecard_question_answers/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_scorecard_question_answers_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_scorecard_question_answers_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_scorecard_question_candidate_attributes

List scorecard question candidate attributes Official Greenhouse Harvest v3 endpoint: GET /v3/scorecard_question_candidate_attributes.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, scorecard_question_ids, focus_candidate_attribute_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_scorecard_question_candidate_attributes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_question_ids":"example_scorecard_question_ids","focus_candidate_attribute_ids":"example_focus_candidate_attribute_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_scorecard_question_candidate_attributes '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_question_ids":"example_scorecard_question_ids","focus_candidate_attribute_ids":"example_focus_candidate_attribute_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_get_v3_scorecard_question_options

List scorecard question options Official Greenhouse Harvest v3 endpoint: GET /v3/scorecard_question_options.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, scorecard_question_ids, fields, active
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_scorecard_question_options '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_question_ids":"example_scorecard_question_ids","fields":"example_fields","active":true}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_scorecard_question_options '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","scorecard_question_ids":"example_scorecard_question_ids","fields":"example_fields","active":true}' --json

greenhouse.greenhouse_get_v3_scorecard_questions

List scorecard questions Official Greenhouse Harvest v3 endpoint: GET /v3/scorecard_questions.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, interview_kit_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_scorecard_questions '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","interview_kit_ids":"example_interview_kit_ids","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_scorecard_questions '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","interview_kit_ids":"example_interview_kit_ids","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_scorecards

Create Scorecard - **restricted** Official Greenhouse Harvest v3 endpoint: POST /v3/scorecards.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_scorecards '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_scorecards '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_scorecards

List scorecards Official Greenhouse Harvest v3 endpoint: GET /v3/scorecards.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, interview_kit_ids, interviewer_ids, submitter_ids, application_ids, fields, interviewed_at, submitted_at, status
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_scorecards '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","interview_kit_ids":"example_interview_kit_ids","interviewer_ids":"example_interviewer_ids","submitter_ids":"example_submitter_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_scorecards '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","interview_kit_ids":"example_interview_kit_ids","interviewer_ids":"example_interviewer_ids","submitter_ids":"example_submitter_ids"}' --json

greenhouse.greenhouse_patch_v3_scorecards_id

Update Scorecard Official Greenhouse Harvest v3 endpoint: PATCH /v3/scorecards/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_scorecards_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_scorecards_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_sources

List sources Official Greenhouse Harvest v3 endpoint: GET /v3/sources.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_sources '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_sources '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json

greenhouse.greenhouse_get_v3_tracking_links

List tracking links Official Greenhouse Harvest v3 endpoint: GET /v3/tracking_links.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, source_ids, referrer_ids, job_board_ids, job_post_ids, related_post_ids, fields, token, related_post_type
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_tracking_links '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","source_ids":"example_source_ids","referrer_ids":"example_referrer_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_tracking_links '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","source_ids":"example_source_ids","referrer_ids":"example_referrer_ids"}' --json

greenhouse.greenhouse_post_v3_user_emails

Create User Email Official Greenhouse Harvest v3 endpoint: POST /v3/user_emails.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_user_emails '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_user_emails '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_user_emails

List user emails Official Greenhouse Harvest v3 endpoint: GET /v3/user_emails.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, user_ids, fields, email, verified, verification_token_sent_at
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_user_emails '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","fields":"example_fields","email":"example_email"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_user_emails '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","user_ids":"example_user_ids","fields":"example_fields","email":"example_email"}' --json

greenhouse.greenhouse_post_v3_user_job_permissions

Create User Job Permission Official Greenhouse Harvest v3 endpoint: POST /v3/user_job_permissions.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_user_job_permissions '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_user_job_permissions '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_user_job_permissions

List user job permissions Official Greenhouse Harvest v3 endpoint: GET /v3/user_job_permissions.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, job_ids, user_ids, role_ids, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_user_job_permissions '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","user_ids":"example_user_ids","role_ids":"example_role_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_user_job_permissions '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","job_ids":"example_job_ids","user_ids":"example_user_ids","role_ids":"example_role_ids"}' --json

greenhouse.greenhouse_delete_v3_user_job_permissions_id

Delete User Job Permission Official Greenhouse Harvest v3 endpoint: DELETE /v3/user_job_permissions/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_user_job_permissions_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_user_job_permissions_id '{"id":"example_id"}' --json

greenhouse.greenhouse_get_v3_user_roles

List user roles Official Greenhouse Harvest v3 endpoint: GET /v3/user_roles.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_user_roles '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_user_roles '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields"}' --json

greenhouse.greenhouse_post_v3_users_id_activate

Activate a user Official Greenhouse Harvest v3 endpoint: POST /v3/users/{id}/activate.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_users_id_activate '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_users_id_activate '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_users_id_deactivate

Deactivate a user Official Greenhouse Harvest v3 endpoint: POST /v3/users/{id}/deactivate.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_users_id_deactivate '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_users_id_deactivate '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_users

List users Official Greenhouse Harvest v3 endpoint: GET /v3/users.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, agency_ids, office_ids, department_ids, linked_candidate_ids, interviewer_tag_ids, fields, employee_ids, custom_field_option_id, deactivated, primary_email, external_office_id, external_department_id
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_users '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","agency_ids":"example_agency_ids","office_ids":"example_office_ids","department_ids":"example_department_ids"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_users '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","agency_ids":"example_agency_ids","office_ids":"example_office_ids","department_ids":"example_department_ids"}' --json

greenhouse.greenhouse_post_v3_users

Create user Official Greenhouse Harvest v3 endpoint: POST /v3/users.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_users '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_users '{"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_users_id_revoke_permissions

Revoke user permissions Official Greenhouse Harvest v3 endpoint: POST /v3/users/{id}/revoke_permissions.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_users_id_revoke_permissions '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_users_id_revoke_permissions '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_patch_v3_users_id

Update Users Official Greenhouse Harvest v3 endpoint: PATCH /v3/users/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_users_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_users_id '{"id":1,"body":"example_body"}' --json

greenhouse.greenhouse_post_v3_webhooks

Create Webhook - **Greenhouse Partners Exclusive** Official Greenhouse Harvest v3 endpoint: POST /v3/webhooks.

Read read
Parameters
body
Generic call
kosmo integrations:call greenhouse.greenhouse_post_v3_webhooks '{"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_post_v3_webhooks '{"body":"example_body"}' --json

greenhouse.greenhouse_get_v3_webhooks

List Webhooks **Greenhouse Partners Exclusive** Official Greenhouse Harvest v3 endpoint: GET /v3/webhooks.

Read read
Parameters
cursor, per_page, ids, created_at, updated_at, fields, last_delivered, event_action_type, deactivated
Generic call
kosmo integrations:call greenhouse.greenhouse_get_v3_webhooks '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","last_delivered":"example_last_delivered","event_action_type":"example_event_action_type"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_get_v3_webhooks '{"cursor":"example_cursor","per_page":1,"ids":"example_ids","created_at":"example_created_at","updated_at":"example_updated_at","fields":"example_fields","last_delivered":"example_last_delivered","event_action_type":"example_event_action_type"}' --json

greenhouse.greenhouse_delete_v3_webhooks_id

Delete Webhook - **Greenhouse Partners Exclusive** Official Greenhouse Harvest v3 endpoint: DELETE /v3/webhooks/{id}.

Write write
Parameters
id
Generic call
kosmo integrations:call greenhouse.greenhouse_delete_v3_webhooks_id '{"id":"example_id"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_delete_v3_webhooks_id '{"id":"example_id"}' --json

greenhouse.greenhouse_patch_v3_webhooks_id

Update Webhook - **Greenhouse Partners Exclusive** Official Greenhouse Harvest v3 endpoint: PATCH /v3/webhooks/{id}.

Read read
Parameters
id, body
Generic call
kosmo integrations:call greenhouse.greenhouse_patch_v3_webhooks_id '{"id":1,"body":"example_body"}' --json
Shortcut
kosmo integrations:greenhouse greenhouse_patch_v3_webhooks_id '{"id":1,"body":"example_body"}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

greenhouse.greenhouse_post_auth_token 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_auth_token --json
ParameterTypeRequiredDescription
body object no JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_application_stages 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_application_stages --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
application_ids array no Comma separated list
job_interview_stage_ids array no Comma separated list
fields array no Comma separated list of fields to return
current boolean no query parameter `current`.
greenhouse.greenhouse_post_v3_applications_id_convert_to_candidate 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_applications_id_convert_to_candidate --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_applications 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_applications --json
ParameterTypeRequiredDescription
body object no JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_applications 17 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_applications --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
candidate_ids array no Comma separated list
job_ids array no Comma separated list
prospective_job_ids array no Comma separated list
job_post_ids array no Comma separated list
source_ids array no Comma separated list
referrer_ids array no Comma separated list
stage_ids array no Comma separated list
fields array no Comma separated list of fields to return
status string no query parameter `status`.
custom_field_option_id integer no query parameter `custom_field_option_id`.
last_activity_at object no query parameter `last_activity_at`.
prospect boolean no query parameter `prospect`.
greenhouse.greenhouse_delete_v3_applications_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_applications_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_patch_v3_applications_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_applications_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_applications_id_hire 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_applications_id_hire --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_applications_id_move 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_applications_id_move --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_applications_id_reject 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_applications_id_reject --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_applications_id_unreject 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_applications_id_unreject --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object no JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_applied_candidate_tags 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_applied_candidate_tags --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_applied_candidate_tags 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_applied_candidate_tags --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
candidate_tag_ids array no Comma separated list
candidate_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_delete_v3_applied_candidate_tags_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_applied_candidate_tags_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_post_v3_approval_flows 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_approval_flows --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_approval_flows 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_approval_flows --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
offer_ids array no Comma separated list
fields array no Comma separated list of fields to return
approval_type string no query parameter `approval_type`.
greenhouse.greenhouse_put_v3_approval_flows_id_replace_approver_groups 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_put_v3_approval_flows_id_replace_approver_groups --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_approval_flows_id_request_approvals 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_approval_flows_id_request_approvals --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object no JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_patch_v3_approval_flows_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_approval_flows_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_approver_groups 7 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_approver_groups --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
approval_flow_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_put_v3_approver_groups_id_replace_approver 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_put_v3_approver_groups_id_replace_approver --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_approvers 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_approvers --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
approver_group_ids array no Comma separated list
user_ids array no Comma separated list
fields array no Comma separated list of fields to return
status string no query parameter `status`.
greenhouse.greenhouse_post_v3_attachments 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_attachments --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_attachments 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_attachments --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
application_ids array no Comma separated list
candidate_ids array no Comma separated list
fields array no Comma separated list of fields to return
type string no query parameter `type`.
greenhouse.greenhouse_delete_v3_attachments_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_attachments_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_get_v3_bulk_requests 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_bulk_requests --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
bulk_action_uuid string no query parameter `bulk_action_uuid`.
active boolean no query parameter `active`.
greenhouse.greenhouse_get_v3_bulk_requests_abc_123_def_456 7 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_bulk_requests_abc_123_def_456 --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
bulk_action_uuid string no query parameter `bulk_action_uuid`.
greenhouse.greenhouse_get_v3_candidate_attribute_types 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_candidate_attribute_types --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
is_draft boolean no query parameter `is_draft`.
greenhouse.greenhouse_post_v3_candidate_educations 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_candidate_educations --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_candidate_educations 10 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_candidate_educations --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
candidate_ids array no Comma separated list
fields array no Comma separated list of fields to return
start_at object no query parameter `start_at`.
end_at object no query parameter `end_at`.
latest boolean no query parameter `latest`.
greenhouse.greenhouse_delete_v3_candidate_educations_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_candidate_educations_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_post_v3_candidate_employments 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_candidate_employments --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_candidate_employments 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_candidate_employments --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
candidate_ids array no Comma separated list
fields array no Comma separated list of fields to return
latest boolean no query parameter `latest`.
greenhouse.greenhouse_delete_v3_candidate_employments_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_candidate_employments_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_post_v3_candidate_tags 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_candidate_tags --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_candidate_tags 6 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_candidate_tags --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
greenhouse.greenhouse_delete_v3_candidate_tags_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_candidate_tags_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_patch_v3_candidates_id_anonymize 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_candidates_id_anonymize --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_candidates 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_candidates --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_candidates 11 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_candidates --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
last_activity_at object no query parameter `last_activity_at`.
custom_field_option_id integer no query parameter `custom_field_option_id`.
private boolean no query parameter `private`.
email string no query parameter `email`.
tag string no query parameter `tag`.
greenhouse.greenhouse_delete_v3_candidates_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_candidates_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_patch_v3_candidates_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_candidates_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_candidates_id_merge 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_candidates_id_merge --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_close_reasons 6 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_close_reasons --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_custom_field_departments 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_custom_field_departments --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_custom_field_departments 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_custom_field_departments --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
custom_field_ids array no Comma separated list
department_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_delete_v3_custom_field_departments_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_custom_field_departments_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_post_v3_custom_field_offices 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_custom_field_offices --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_custom_field_offices 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_custom_field_offices --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
custom_field_ids array no Comma separated list
office_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_delete_v3_custom_field_offices_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_custom_field_offices_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_post_v3_custom_field_options 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_custom_field_options --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_custom_field_options 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_custom_field_options --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
custom_field_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
custom_field_key string no query parameter `custom_field_key`.
greenhouse.greenhouse_patch_v3_custom_field_options_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_custom_field_options_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_delete_v3_custom_field_options_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_custom_field_options_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_post_v3_custom_fields 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_custom_fields --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_custom_fields 10 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_custom_fields --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
field_type string no query parameter `field_type`.
active boolean no query parameter `active`.
name string no query parameter `name`.
name_key string no query parameter `name_key`.
greenhouse.greenhouse_delete_v3_custom_fields_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_custom_fields_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_patch_v3_custom_fields_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_custom_fields_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_default_interviewers 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_default_interviewers --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
user_ids array no Comma separated list
interview_kit_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_get_v3_demographic_answer_options 6 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_demographic_answer_options --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
demographic_question_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
greenhouse.greenhouse_get_v3_demographic_answers 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_demographic_answers --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
application_ids array no Comma separated list
demographic_question_ids array no Comma separated list
demographic_answer_option_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_get_v3_demographic_question_sets 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_demographic_question_sets --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
enabled boolean no query parameter `enabled`.
greenhouse.greenhouse_get_v3_demographic_questions 7 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_demographic_questions --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
demographic_question_set_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
required boolean no query parameter `required`.
greenhouse.greenhouse_post_v3_departments 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_departments --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_departments 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_departments --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
parent_id integer no query parameter `parent_id`.
external_id string no query parameter `external_id`.
greenhouse.greenhouse_patch_v3_departments_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_departments_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_eeoc 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_eeoc --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
application_ids array no Comma separated list
fields array no Comma separated list of fields to return
submitted_at object no query parameter `submitted_at`.
greenhouse.greenhouse_get_v3_email_templates 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_email_templates --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
email_type string no query parameter `email_type`.
from_type string no query parameter `from_type`.
greenhouse.greenhouse_get_v3_focus_candidate_attributes 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_focus_candidate_attributes --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
interview_kit_ids array no Comma separated list
job_candidate_attribute_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_future_job_permissions 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_future_job_permissions --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_future_job_permissions 12 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_future_job_permissions --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
department_ids array no Comma separated list
office_ids array no Comma separated list
user_ids array no Comma separated list
role_ids array no Comma separated list
fields array no Comma separated list of fields to return
external_department_id string no query parameter `external_department_id`.
external_office_id string no query parameter `external_office_id`.
greenhouse.greenhouse_delete_v3_future_job_permissions_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_future_job_permissions_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_get_v3_interview_kits 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_interview_kits --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
job_interview_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_get_v3_interviewer_tags 6 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_interviewer_tags --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
greenhouse.greenhouse_get_v3_interviewers 10 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_interviewers --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
interview_ids array no Comma separated list
user_ids array no Comma separated list
scorecard_ids array no Comma separated list
fields array no Comma separated list of fields to return
response_status string no query parameter `response_status`.
greenhouse.greenhouse_post_v3_interviews 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_interviews --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_interviews 16 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_interviews --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
application_ids array no Comma separated list
job_interview_ids array no Comma separated list
organizer_ids array no Comma separated list
fields array no Comma separated list of fields to return
starts_at object no query parameter `starts_at`.
ends_at object no query parameter `ends_at`.
all_day_start_on object no query parameter `all_day_start_on`.
all_day_end_on object no query parameter `all_day_end_on`.
external_event_id string no query parameter `external_event_id`.
status string no query parameter `status`.
greenhouse.greenhouse_delete_v3_interviews_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_interviews_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_patch_v3_interviews_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_interviews_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_job_board_custom_locations 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_board_custom_locations --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
greenhouse_job_board_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
greenhouse.greenhouse_get_v3_job_candidate_attributes 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_candidate_attributes --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
candidate_attribute_type_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_job_hiring_managers 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_job_hiring_managers --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_job_hiring_managers 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_hiring_managers --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
user_ids array no Comma separated list
job_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_delete_v3_job_hiring_managers_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_job_hiring_managers_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_get_v3_job_interview_stages 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_interview_stages --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
greenhouse.greenhouse_get_v3_job_interviews 10 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_interviews --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_interview_stage_ids array no Comma separated list
job_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
scheduling_type string no query parameter `scheduling_type`.
greenhouse.greenhouse_post_v3_job_notes 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_job_notes --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_job_notes 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_notes --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
user_ids array no Comma separated list
fields array no Comma separated list of fields to return
visibility string no query parameter `visibility`.
greenhouse.greenhouse_delete_v3_job_notes_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_job_notes_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_patch_v3_job_notes_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_job_notes_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_job_owners 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_job_owners --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_job_owners 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_owners --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
user_ids array no Comma separated list
job_ids array no Comma separated list
fields array no Comma separated list of fields to return
type string no query parameter `type`.
greenhouse.greenhouse_delete_v3_job_owners_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_job_owners_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_post_v3_job_post_locations 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_job_post_locations --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_job_post_locations 11 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_post_locations --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
office_ids array no Comma separated list
job_post_ids array no Comma separated list
custom_location_ids array no Comma separated list
fields array no Comma separated list of fields to return
type string no query parameter `type`.
plain_text_location string no query parameter `plain_text_location`.
greenhouse.greenhouse_delete_v3_job_post_locations_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_job_post_locations_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_get_v3_job_posts 12 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_job_posts --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
job_board_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
featured boolean no query parameter `featured`.
live boolean no query parameter `live`.
internal boolean no query parameter `internal`.
greenhouse.greenhouse_patch_v3_job_posts_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_job_posts_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_jobs 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_jobs --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_jobs 14 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_jobs --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
opened_at object no query parameter `opened_at`.
closed_at object no query parameter `closed_at`.
requisition_id string no query parameter `requisition_id`.
department_id integer no query parameter `department_id`.
office_id integer no query parameter `office_id`.
custom_field_option_id integer no query parameter `custom_field_option_id`.
confidential boolean no query parameter `confidential`.
status string no query parameter `status`.
greenhouse.greenhouse_patch_v3_jobs_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_jobs_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_notes 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_notes --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_offers 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_offers --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_offers 16 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_offers --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
application_ids array no Comma separated list
job_ids array no Comma separated list
candidate_ids array no Comma separated list
opening_ids array no Comma separated list
fields array no Comma separated list of fields to return
current_only boolean no query parameter `current_only`.
custom_field_option_id integer no query parameter `custom_field_option_id`.
status string no query parameter `status`.
resolved_at object no query parameter `resolved_at`.
sent_on object no query parameter `sent_on`.
starts_on object no query parameter `starts_on`.
greenhouse.greenhouse_patch_v3_offers_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_offers_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_offices 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_offices --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_offices 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_offices --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
parent_id integer no query parameter `parent_id`.
external_id string no query parameter `external_id`.
greenhouse.greenhouse_patch_v3_offices_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_offices_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_openings 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_openings --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_openings 14 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_openings --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
application_ids array no Comma separated list
close_reason_ids array no Comma separated list
fields array no Comma separated list of fields to return
opened_at object no query parameter `opened_at`.
closed_at object no query parameter `closed_at`.
custom_field_option_id integer no query parameter `custom_field_option_id`.
open boolean no query parameter `open`.
opening_id string no query parameter `opening_id`.
greenhouse.greenhouse_delete_v3_openings_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_openings_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_patch_v3_openings_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_openings_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_prospect_details 12 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_prospect_details --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
application_ids array no Comma separated list
pool_ids array no Comma separated list
pool_stage_ids array no Comma separated list
prospect_owner_ids array no Comma separated list
department_ids array no Comma separated list
office_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_get_v3_prospect_pool_stages 7 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_prospect_pool_stages --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
prospect_pool_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_get_v3_prospect_pools 10 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_prospect_pools --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
department_ids array no Comma separated list
office_ids array no Comma separated list
job_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
greenhouse.greenhouse_get_v3_referrers 7 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_referrers --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
user_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_get_v3_rejection_details 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_rejection_details --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
application_ids array no Comma separated list
rejection_reason_ids array no Comma separated list
fields array no Comma separated list of fields to return
custom_field_option_id integer no query parameter `custom_field_option_id`.
greenhouse.greenhouse_patch_v3_rejection_details_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_rejection_details_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_rejection_reasons 7 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_rejection_reasons --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
include_defaults boolean no query parameter `include_defaults`.
greenhouse.greenhouse_get_v3_scorecard_candidate_attributes 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_scorecard_candidate_attributes --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
scorecard_ids array no Comma separated list
job_candidate_attribute_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_scorecard_candidate_attributes 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_scorecard_candidate_attributes --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_patch_v3_scorecard_candidate_attributes_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_scorecard_candidate_attributes_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_scorecard_question_answer_options 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_scorecard_question_answer_options --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
scorecard_question_option_ids array no Comma separated list
scorecard_question_answer_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_scorecard_question_answer_options 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_scorecard_question_answer_options --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_scorecard_question_answers 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_scorecard_question_answers --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
scorecard_ids array no Comma separated list
scorecard_question_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_scorecard_question_answers 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_scorecard_question_answers --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_patch_v3_scorecard_question_answers_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_scorecard_question_answers_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_scorecard_question_candidate_attributes 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_scorecard_question_candidate_attributes --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
scorecard_question_ids array no Comma separated list
focus_candidate_attribute_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_get_v3_scorecard_question_options 8 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_scorecard_question_options --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
scorecard_question_ids array no Comma separated list
fields array no Comma separated list of fields to return
active boolean no query parameter `active`.
greenhouse.greenhouse_get_v3_scorecard_questions 7 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_scorecard_questions --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
interview_kit_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_scorecards 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_scorecards --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_scorecards 13 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_scorecards --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
interview_kit_ids array no Comma separated list
interviewer_ids array no Comma separated list
submitter_ids array no Comma separated list
application_ids array no Comma separated list
fields array no Comma separated list of fields to return
interviewed_at object no query parameter `interviewed_at`.
submitted_at object no query parameter `submitted_at`.
status string no query parameter `status`.
greenhouse.greenhouse_patch_v3_scorecards_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_scorecards_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_sources 6 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_sources --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_user_emails 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_user_emails --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_user_emails 10 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_user_emails --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
user_ids array no Comma separated list
fields array no Comma separated list of fields to return
email array no Comma separated list
verified boolean no query parameter `verified`.
verification_token_sent_at object no query parameter `verification_token_sent_at`.
greenhouse.greenhouse_post_v3_user_job_permissions 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_user_job_permissions --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_user_job_permissions 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_user_job_permissions --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
job_ids array no Comma separated list
user_ids array no Comma separated list
role_ids array no Comma separated list
fields array no Comma separated list of fields to return
greenhouse.greenhouse_delete_v3_user_job_permissions_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_user_job_permissions_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_get_v3_user_roles 6 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_user_roles --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
greenhouse.greenhouse_post_v3_users_id_activate 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_users_id_activate --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object no JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_users_id_deactivate 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_users_id_deactivate --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object no JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_users 17 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_users --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
agency_ids array no Comma separated list
office_ids array no Comma separated list
department_ids array no Comma separated list
linked_candidate_ids array no Comma separated list
interviewer_tag_ids array no Comma separated list
fields array no Comma separated list of fields to return
employee_ids array no Comma separated list
custom_field_option_id integer no query parameter `custom_field_option_id`.
deactivated boolean no query parameter `deactivated`.
primary_email string no query parameter `primary_email`.
external_office_id string no query parameter `external_office_id`.
external_department_id string no query parameter `external_department_id`.
greenhouse.greenhouse_post_v3_users 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_users --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_users_id_revoke_permissions 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_users_id_revoke_permissions --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object no JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_patch_v3_users_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_users_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_post_v3_webhooks 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_post_v3_webhooks --json
ParameterTypeRequiredDescription
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.
greenhouse.greenhouse_get_v3_webhooks 9 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_get_v3_webhooks --json
ParameterTypeRequiredDescription
cursor string no Cursor link for pagination from previous page response header. Do not use any other parameters when using this.
per_page integer no Number of results per page
ids array no Comma separated list
created_at object no query parameter `created_at`.
updated_at object no query parameter `updated_at`.
fields array no Comma separated list of fields to return
last_delivered object no query parameter `last_delivered`.
event_action_type string no query parameter `event_action_type`.
deactivated boolean no query parameter `deactivated`.
greenhouse.greenhouse_delete_v3_webhooks_id 1 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_delete_v3_webhooks_id --json
ParameterTypeRequiredDescription
id string yes path parameter `id`.
greenhouse.greenhouse_patch_v3_webhooks_id 2 parameters
Schema command
kosmo integrations:schema greenhouse.greenhouse_patch_v3_webhooks_id --json
ParameterTypeRequiredDescription
id integer yes path parameter `id`.
body object yes JSON request body matching the official Greenhouse Harvest v3 schema for this operation.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.