For Agents
Manage organizations, people, charts, and roles in Organimi, and export rendered org charts in multiple formats.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Organimi 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 Organimi API API.
List the organizations the authenticated user belongs to via GET /api/v7/me/organizations
Add a new person to the talent pool of an organization with POST /api/v7/organizations/{orgId}/people
Update or remove an employee record using PATCH or DELETE on /api/v7/organizations/{orgId}/people/{personId}
Define custom fields on people records through POST /api/v7/organizations/{orgId}/fields
GET STARTED
Use for: I need to add a new hire to our org chart, Export the current org chart as a PDF, List all charts under my organization, Find every role reporting into the engineering chart
Not supported: Does not handle payroll, time tracking, or performance reviews — use for org chart structure, people records, and role exports only.
Jentic publishes the only available OpenAPI document for Organimi API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Organimi API, keeping it validated and agent-ready. Organimi is a cloud org-chart platform used by HR and people-ops teams to maintain visual organization charts, talent pools, and reporting hierarchies. The API spans 23 endpoints across organizations, people, custom fields, charts, roles, and exports, letting integrations sync HRIS data into a live chart and pull rendered charts in PDF, PNG, or CSV. It supports OAuth login plus bearer-token API access, and it is suitable for keeping org charts in lock-step with payroll or directory sources.
Create a new org chart and populate roles via POST /api/v7/organizations/{orgId}/charts and /charts/{chartId}/roles
Export a chart to PDF, PNG, or CSV through GET /api/v7/organizations/{orgId}/charts/{chartId}/exports/{format}
Search across roles in the connected organizations using GET /api/v7/search/roles
Patterns agents use Organimi API API for, with concrete tasks.
★ HRIS to Org Chart Sync
People-ops teams often hold the source of truth in BambooHR, Workday, or a directory service while leaders prefer a visual chart. The Organimi API lets a sync job push people, titles, and reporting lines into Organimi after each HRIS change so the chart never drifts. The 23 endpoints cover the full CRUD surface needed for daily reconciliation.
On each HRIS webhook, POST or PATCH /api/v7/organizations/{orgId}/people to mirror the change, then PATCH the matching role on the relevant chart.
Automated Org Chart Exports
Boards and leadership often request a current PDF org chart for monthly reviews. Instead of manually exporting, a scheduled job can call GET /api/v7/organizations/{orgId}/charts/{chartId}/exports/{format} to pull the latest chart as PDF, PNG, or CSV and attach it to the report pipeline.
Call GET /api/v7/organizations/{orgId}/charts/{chartId}/exports/pdf and upload the binary response to the shared drive used for the board pack.
Custom Field Driven Reporting
Finance often wants to slice headcount by cost center or location. Defining custom fields via POST /api/v7/organizations/{orgId}/fields lets people-ops add structured attributes that flow into chart filters and exports without modifying core people records.
POST a custom field cost_center to /api/v7/organizations/{orgId}/fields, then PATCH each person record to populate it.
Agent-Driven People Operations via Jentic
Agents that handle onboarding and directory updates can keep Organimi in sync without learning the API surface. Jentic exposes operations by intent and isolates the bearer token in the vault, letting an agent add a hire, assign a role, and export the updated chart in one workflow.
Use Jentic to search 'add a person to the org chart', load the schema for POST /api/v7/organizations/{orgId}/people, and execute with the new hire details.
23 endpoints — jentic publishes the only available openapi specification for organimi api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/v7/me/organizations
List organizations the user belongs to
/api/v7/organizations/{orgId}/people
Add a person to the talent pool
/api/v7/organizations/{orgId}/people/{personId}
Update a person record
/api/v7/organizations/{orgId}/charts
Create a new org chart
/api/v7/organizations/{orgId}/charts/{chartId}/roles
Add a role to a chart
/api/v7/organizations/{orgId}/charts/{chartId}/exports/{format}
Export a chart as PDF, PNG, or CSV
/api/v7/search/roles
Search across roles
/api/v7/me/organizations
List organizations the user belongs to
/api/v7/organizations/{orgId}/people
Add a person to the talent pool
/api/v7/organizations/{orgId}/people/{personId}
Update a person record
/api/v7/organizations/{orgId}/charts
Create a new org chart
/api/v7/organizations/{orgId}/charts/{chartId}/roles
Add a role to a chart
Three things that make agents converge on Jentic-routed access.
Credential isolation
Organimi bearer tokens are stored encrypted in the Jentic vault. Agents receive scoped execution access — the raw token never enters the agent's prompt or context window.
Intent-based discovery
Agents search by intent (e.g., 'add a person to the org chart' or 'export the chart as PDF') and Jentic returns the matching Organimi operation with its input schema.
Time to first call
Direct Organimi integration: 2-4 days for OAuth flow, person CRUD, and export handling. Through Jentic: under an hour — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
BambooHR API
BambooHR is a common HRIS source of truth that feeds people, titles, and reporting lines into Organimi.
Use BambooHR alongside Organimi when the HRIS holds employee records and Organimi only renders the chart.
Workday Staffing API
Workday Staffing provides workforce records that Organimi consumes to build the visual hierarchy.
Use Workday when the customer is enterprise-scale and the HRIS holds reporting lines that Organimi must mirror.
Figma REST API
Figma is sometimes used to manually maintain org charts as design files instead of a structured org-chart tool.
Figma is a fallback when teams want full visual control but lose structured people/role data — choose Organimi when you need queryable structure.
Specific to using Organimi API API through Jentic.
Why is there no official OpenAPI spec for Organimi API?
Organimi publishes its API on SwaggerHub but does not host a maintained OpenAPI document on its own domain. Jentic generates and maintains this spec so that AI agents and developers can call Organimi 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 Organimi API use?
Organimi uses bearer-token authentication, with OAuth login and logout endpoints under /api/v7/auth. Through Jentic the bearer token is stored encrypted in the vault and injected at execution.
Can I export an org chart as a PDF through the Organimi API?
Yes. Call GET /api/v7/organizations/{orgId}/charts/{chartId}/exports/{format} with format set to pdf. PNG and CSV are also supported on the same endpoint.
What are the rate limits for the Organimi API?
The OpenAPI spec does not specify numeric rate limits. SwaggerHub publishes Organimi's terms but not throttle thresholds — confirm with Organimi support if you plan to push more than a few hundred people updates per minute.
How do I add a new hire to an Organimi chart through Jentic?
Search Jentic for 'add a person to an org chart', load the POST /api/v7/organizations/{orgId}/people schema, and execute with the new hire's name, title, and reporting manager. Then PATCH the relevant chart role to slot them into the structure.
Can I define custom fields on Organimi people records?
Yes. POST /api/v7/organizations/{orgId}/fields creates a new custom field definition. After creation, PATCH /api/v7/organizations/{orgId}/people/{personId} can populate that field for individual people.
/api/v7/organizations/{orgId}/charts/{chartId}/exports/{format}
Export a chart as PDF, PNG, or CSV
/api/v7/search/roles
Search across roles