List candidates from the Greenhouse Harvest API with optional filtersParameters:
Parameter
Type
Required
Default
Description
page
number
No
—
Page number for pagination
per_page
number
No
—
Number of candidates per page (1-500)
created_before
string
No
—
Filter candidates created before this date (ISO 8601 format)
created_after
string
No
—
Filter candidates created after this date (ISO 8601 format)
last_activity_after
string
No
—
Filter candidates with last activity after this date (ISO 8601 format)
email
string
No
—
Filter candidates by email address
job_id
string
No
—
Filter candidates by job ID
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "page": { "type": "number", "description": "Page number for pagination" }, "per_page": { "type": "number", "description": "Number of candidates per page (1-500)" }, "created_before": { "type": "string", "description": "Filter candidates created before this date (ISO 8601 format)" }, "created_after": { "type": "string", "description": "Filter candidates created after this date (ISO 8601 format)" }, "last_activity_after": { "type": "string", "description": "Filter candidates with last activity after this date (ISO 8601 format)" }, "email": { "type": "string", "description": "Filter candidates by email address" }, "job_id": { "type": "string", "description": "Filter candidates by job ID" } }, "required": [ "PCID" ]}
List jobs from the Greenhouse Harvest API with optional filtersParameters:
Parameter
Type
Required
Default
Description
page
number
No
—
Page number for pagination
per_page
number
No
—
Number of jobs per page (1-500)
created_before
string
No
—
Filter jobs created before this date (ISO 8601 format)
created_after
string
No
—
Filter jobs created after this date (ISO 8601 format)
opened_before
string
No
—
Filter jobs opened before this date (ISO 8601 format)
opened_after
string
No
—
Filter jobs opened after this date (ISO 8601 format)
closed_before
string
No
—
Filter jobs closed before this date (ISO 8601 format)
closed_after
string
No
—
Filter jobs closed after this date (ISO 8601 format)
status
string
No
—
Filter jobs by status
department_id
string
No
—
Filter jobs by department ID
office_id
string
No
—
Filter jobs by office ID
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "page": { "type": "number", "description": "Page number for pagination" }, "per_page": { "type": "number", "description": "Number of jobs per page (1-500)" }, "created_before": { "type": "string", "description": "Filter jobs created before this date (ISO 8601 format)" }, "created_after": { "type": "string", "description": "Filter jobs created after this date (ISO 8601 format)" }, "opened_before": { "type": "string", "description": "Filter jobs opened before this date (ISO 8601 format)" }, "opened_after": { "type": "string", "description": "Filter jobs opened after this date (ISO 8601 format)" }, "closed_before": { "type": "string", "description": "Filter jobs closed before this date (ISO 8601 format)" }, "closed_after": { "type": "string", "description": "Filter jobs closed after this date (ISO 8601 format)" }, "status": { "type": "string", "enum": [ "open", "closed", "draft" ], "description": "Filter jobs by status" }, "department_id": { "type": "string", "description": "Filter jobs by department ID" }, "office_id": { "type": "string", "description": "Filter jobs by office ID" } }, "required": [ "PCID" ]}