bamboohr_get_employee_files
Pack: bamboohr · Endpoint: https://gateway.pipeworx.io/bamboohr/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/bamboohr_get_employee_files for the schema, then POST the same URL with its arguments for the data.
Get files in an employee’s profile by ID. Returns file names, upload dates, and file types.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | BambooHR API key |
_subdomain | string | yes | BambooHR subdomain |
id | number | yes | Employee ID |
Example call
Arguments
{
"_apiKey": "your-bamboohr-api-key",
"_subdomain": "mycompany",
"id": 12345
}
curl
curl -X POST https://gateway.pipeworx.io/bamboohr/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bamboohr_get_employee_files","arguments":{"_apiKey":"your-bamboohr-api-key","_subdomain":"mycompany","id":12345}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bamboohr_get_employee_files', {
"_apiKey": "your-bamboohr-api-key",
"_subdomain": "mycompany",
"id": 12345
});
Response shape
| Field | Type | Description |
|---|---|---|
files | array | Employee profile files |
Full JSON Schema
{
"type": "object",
"properties": {
"files": {
"type": "array",
"description": "Employee profile files",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "File ID"
},
"name": {
"type": "string",
"description": "File name"
},
"uploadDate": {
"type": "string",
"description": "Upload date and time"
},
"type": {
"type": "string",
"description": "File type/MIME type"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bamboohr": {
"url": "https://gateway.pipeworx.io/bamboohr/mcp"
}
}
}
See Getting Started for client-specific install steps.