Documentation Index
Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
Server path: /kallidus-sapling | Type: Application | PCID required: Yes
| Tool | Description |
|---|
kallidus_sapling_get_employees | Get list of employees from Kallidus Sapling |
kallidus_sapling_get_employee | Get detailed information about a specific employee |
kallidus_sapling_create_employee | Create a new employee record |
kallidus_sapling_update_employee | Update an existing employee record |
kallidus_sapling_get_departments | Get list of departments |
kallidus_sapling_get_employees
Get list of employees from Kallidus Sapling
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
departmentId | string | No | — | Filter by department ID |
status | string | No | — | Filter by employee status |
limit | number | No | 100 | Maximum number of employees to return |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"departmentId": {
"type": "string",
"description": "Filter by department ID"
},
"status": {
"type": "string",
"enum": [
"active",
"inactive",
"terminated"
],
"description": "Filter by employee status"
},
"limit": {
"type": "number",
"default": 100,
"description": "Maximum number of employees to return"
}
},
"required": [
"PCID"
]
}
kallidus_sapling_get_employee
Get detailed information about a specific employee
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
employeeId | string | Yes | — | Employee ID to retrieve |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"employeeId": {
"type": "string",
"description": "Employee ID to retrieve"
}
},
"required": [
"PCID",
"employeeId"
]
}
kallidus_sapling_create_employee
Create a new employee record
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
firstName | string | Yes | — | Employee first name |
lastName | string | Yes | — | Employee last name |
email | string | Yes | — | Employee email address |
jobTitle | string | No | — | Job title |
departmentId | string | No | — | Department ID |
managerId | string | No | — | Manager employee ID |
startDate | string | No | — | Start date (YYYY-MM-DD) |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"firstName": {
"type": "string",
"description": "Employee first name"
},
"lastName": {
"type": "string",
"description": "Employee last name"
},
"email": {
"type": "string",
"description": "Employee email address"
},
"jobTitle": {
"type": "string",
"description": "Job title"
},
"departmentId": {
"type": "string",
"description": "Department ID"
},
"managerId": {
"type": "string",
"description": "Manager employee ID"
},
"startDate": {
"type": "string",
"description": "Start date (YYYY-MM-DD)"
}
},
"required": [
"PCID",
"firstName",
"lastName",
"email"
]
}
kallidus_sapling_update_employee
Update an existing employee record
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
employeeId | string | Yes | — | Employee ID to update |
firstName | string | No | — | Updated first name |
lastName | string | No | — | Updated last name |
email | string | No | — | Updated email |
jobTitle | string | No | — | Updated job title |
departmentId | string | No | — | Updated department ID |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"employeeId": {
"type": "string",
"description": "Employee ID to update"
},
"firstName": {
"type": "string",
"description": "Updated first name"
},
"lastName": {
"type": "string",
"description": "Updated last name"
},
"email": {
"type": "string",
"description": "Updated email"
},
"jobTitle": {
"type": "string",
"description": "Updated job title"
},
"departmentId": {
"type": "string",
"description": "Updated department ID"
}
},
"required": [
"PCID",
"employeeId"
]
}
kallidus_sapling_get_departments
Get list of departments
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
}
},
"required": [
"PCID"
]
}