teamtailor_list_candidates
Retrieve and filter candidate data from the Teamtailor recruitment platform, enabling users to manage and organize hiring processes efficiently.
Instructions
List and filter candidates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | ||
page | No | ||
pageSize | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filter": {
"additionalProperties": false,
"properties": {
"createdAfter": {
"type": "string"
},
"createdBefore": {
"type": "string"
},
"updatedAfter": {
"type": "string"
},
"updatedBefore": {
"type": "string"
}
},
"type": "object"
},
"page": {
"default": 1,
"type": "number"
},
"pageSize": {
"default": 10,
"type": "number"
}
},
"type": "object"
}