bamboohr_get_employee_files

Pack: bamboohr · Endpoint: https://gateway.pipeworx.io/bamboohr/mcp

Get files in an employee’s profile by ID. Returns file names, upload dates, and file types.

Parameters

NameTypeRequiredDescription
_apiKeystringyesBambooHR API key
_subdomainstringyesBambooHR subdomain
idnumberyesEmployee 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

FieldTypeDescription
filesarrayEmployee 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.

Regenerated from source · build May 9, 2026