For Agents
Manage Factorial HR employees, teams, time-off requests, attendance shifts, payroll supplements, and HR documents through a versioned API.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Factorial HR API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Factorial HR API API.
List, create, update, and delete employee records under /resources/core/employees
Manage teams and their membership through /resources/core/teams
Submit and approve time-off leave requests via /resources/time_off/leaves
Record and update attendance shifts via /resources/attendance/shifts
GET STARTED
Use for: List all employees in the Factorial workspace, Create a new Factorial employee record, Submit a time-off request for an employee, Get the current authenticated Factorial user
Not supported: Does not handle running payroll itself, ATS recruiting pipelines, or employee performance reviews — use for HR records, time off, attendance, and payroll supplements only.
Jentic publishes the only available OpenAPI document for Factorial HR API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Factorial HR API, keeping it validated and agent-ready. Factorial is a European HR platform used by SMEs to manage employees, teams, time off, attendance shifts, payroll supplements, and HR documents. The 2024-10-01 API surface gives programmatic access to the core HR record (employees, teams), the request flows for time off and attendance, and document storage, so integrators can sync HR data into IT, finance, or recruitment workflows. Authentication uses a bearer token issued from the Factorial workspace settings.
Create payroll supplements that feed Factorial's payroll cycle
Read and store HR documents tied to employee records
Patterns agents use Factorial HR API API for, with concrete tasks.
★ HRIS Synchronisation
Engineering and IT teams sync Factorial employees into Okta, Jira, and Slack so that joiners get the right access on day one and leavers are deprovisioned automatically. GET /resources/core/employees lists the workforce and the team endpoints expose reporting structure, so a downstream IAM platform can mirror the HR record without manual exports.
List employees via GET /resources/core/employees, diff against the IAM directory, and create or deprovision accounts based on the result.
Time-off Request Automation
Operations teams replace email-based holiday requests with a Slack or Microsoft Teams flow that creates a leave directly in Factorial. POST /resources/time_off/leaves submits the request and GET /resources/time_off/leaves/{id} polls for approval, while GET /resources/time_off/policies surfaces the available leave types so the form stays in sync with HR policy.
Create a leave request via POST /resources/time_off/leaves with the employee ID, start date, end date, and policy, then notify the manager.
Payroll Supplement Feed
Finance teams running monthly bonuses, commissions, or expense reimbursements push them into Factorial as payroll supplements rather than emailing spreadsheets. POST /resources/payroll/supplements adds the line item against an employee and GET /resources/payroll/supplements lists what is queued for the next payroll run, giving finance an auditable trail.
Create payroll supplements for the sales team's monthly commission via POST /resources/payroll/supplements with the employee ID, amount, and label.
AI Agent HR Assistant
An AI agent acting as an HR copilot can use Jentic to answer 'who is on leave next week' or 'create a leave request for me' without managing the Factorial bearer token directly. Jentic returns the matching operation by intent search, validates inputs against the schema, and isolates credentials so the agent never sees the raw token.
Search Jentic for 'submit a time-off request', load the POST /resources/time_off/leaves schema, and execute it using the requesting employee's ID and date range.
30 endpoints — jentic publishes the only available openapi specification for factorial hr api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/resources/core/me
Get the current authenticated user.
/resources/core/employees
List employees in the workspace.
/resources/core/employees
Create a new employee record.
/resources/time_off/leaves
Submit a time-off leave request.
/resources/time_off/policies
List the configured time-off policies.
/resources/attendance/shifts
Record an attendance shift for an employee.
/resources/payroll/supplements
Add a payroll supplement to the next payroll run.
/resources/documents/documents
List HR documents.
/resources/core/me
Get the current authenticated user.
/resources/core/employees
List employees in the workspace.
/resources/core/employees
Create a new employee record.
/resources/time_off/leaves
Submit a time-off leave request.
/resources/time_off/policies
List the configured time-off policies.
Three things that make agents converge on Jentic-routed access.
Credential isolation
Factorial bearer tokens are stored in the encrypted Jentic vault (MAXsystem). Agents receive scoped access tokens — the raw token never enters the agent's prompt or tool output.
Intent-based discovery
Agents search Jentic by intent (e.g., 'submit a time-off request') and receive the matching Factorial operation with its full input schema, so the agent can fill the right fields without reading the Factorial docs site.
Time to first call
Direct Factorial integration: 1-2 days reading the HTML reference, building auth, and handling 429 backoff. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
BambooHR API
US-focused HRIS covering employees, time off, and reports — same shape, different geography.
Choose BambooHR for US-headquartered customers; Factorial is the more common choice in Europe.
Gusto API
US payroll-first HR platform that complements employee records with full payroll execution.
Choose Gusto when payroll execution itself needs to be triggered via API; Factorial only exposes payroll supplements.
Rippling API
Unified HR + IT + finance platform with deeper IT provisioning than Factorial.
Choose Rippling when the workflow also needs device management and SaaS provisioning, not just HR records.
HiBob API
European-friendly HRIS with rich people analytics and similar API coverage.
Choose HiBob when the customer prioritises people analytics and culture features over Factorial's payroll-supplement workflow.
Specific to using Factorial HR API API through Jentic.
Why is there no official OpenAPI spec for Factorial HR API?
Factorial does not publish an OpenAPI specification — its developer reference is rendered as HTML at apidoc.factorialhr.com. Jentic generates and maintains this spec so that AI agents and developers can call Factorial HR API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Factorial HR API use?
Factorial uses HTTP Bearer authentication. Generate an API token from the workspace settings and pass it as Authorization: Bearer <token> on every call. Through Jentic the token is stored encrypted in the vault and injected at call time, so it never enters the agent's prompt context.
Can I run payroll itself with this API?
Not directly. The payroll surface in this version exposes /resources/payroll/supplements only — you can add bonuses, commissions, and other supplements that feed the next payroll cycle, but the actual payroll run is triggered inside the Factorial workspace by a payroll administrator.
What are the rate limits for the Factorial HR API?
Factorial does not document a numeric rate limit in the spec; limits are applied per workspace and surfaced via 429 responses when exceeded. Treat batch operations (e.g. employee list + per-employee document fetches) as paginated and back off on 429.
How do I create a time-off request through Jentic?
Run pip install jentic, then search Jentic for 'submit a time-off request', load the schema for POST /resources/time_off/leaves, and execute it with the employee ID, start_on, end_on, and the policy. Jentic injects the bearer token from your stored Factorial credentials. Sign up at https://app.jentic.com/sign-up.
Does the API expose the employee directory in real time?
Yes. GET /resources/core/employees returns the live employee directory and GET /resources/core/employees/{id} fetches a single record. Pair the list call with GET /resources/core/teams to recover reporting structure for downstream IAM or directory sync.
/resources/attendance/shifts
Record an attendance shift for an employee.
/resources/payroll/supplements
Add a payroll supplement to the next payroll run.
/resources/documents/documents
List HR documents.