Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the GererMesAffaires {REST: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.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fgerermesaffaires.com%2Fgerermesaffaires" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fgerermesaffaires.com%2Fgerermesaffaires" | 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 GererMesAffaires {REST:API} API.
Push payslips and accounting documents into a client's secure space inside a business group
Create and manage business groups, spaces, and hub structures for accountant-client document exchange
Send and track e-signature requests on contracts and engagement letters
Synchronise customer folders between an external accounting system and the GererMesAffaires hub
GET STARTED
Manage user profiles, registrations, and session activity for the platform's tenants
Distribute notifications and menu structures across hubs and spaces
Patterns agents use GererMesAffaires {REST:API} API for, with concrete tasks.
★ Accountant-to-Client Payslip Distribution
French accounting firms produce payslips for their SME clients each month and need a secure, audit-trailed way to deliver them. The GererMesAffaires API accepts payslip uploads into the client's space inside the firm's hub, so the firm's payroll software can push files automatically and the client retrieves them via the GererMesAffaires portal. This replaces email-based delivery with an audited workflow.
Upload a payslip PDF for a named employee to space {spaceId} on hub {hub} via `POST /hub/spaces/{spaceId}/payslips` and confirm the file ID in the response.
Business Group and Space Provisioning
When an accounting firm onboards a new client, it must create a business group, provision a dedicated space, and grant access to specific users. The API exposes business-group and space CRUD plus guest access endpoints, so onboarding can be automated end-to-end from the firm's CRM rather than configured manually in the GererMesAffaires UI.
Create a business group via `POST /business-groups`, then add a space and grant a guest user access using `POST /business-groups/{id}/spaces/{spaceId}/legal-entities/{personId}/customers/{folderId}/guest-in-space`.
Document Synchronisation with External Accounting Software
Accounting tools that hold ledgers, invoices, and tax filings need a secure way to mirror documents into the client portal so clients can view, download, and acknowledge them. The API's document and hub endpoints provide a one-way push from the system of record into the GererMesAffaires hub, keeping the portal consistent with the firm's tooling.
For each new invoice exported from the accounting system, call `POST /hub/documents` to push the file into the correct hub and capture the resulting document ID.
Agent-Driven Client Document Workflow
An AI agent embedded in an accounting firm's tooling can answer queries like 'send last month's payslip to client X' by discovering the right GererMesAffaires operation through Jentic and executing it. The agent does not need a hand-coded integration: Jentic resolves the natural-language intent to the payslip-push endpoint and calls it with the correct parameters.
Given a client name and month, look up the matching space, then call `POST /hub/spaces/{spaceId}/payslips` via Jentic to push the payslip and return the document ID to the user.
280 endpoints — jentic publishes the only available openapi specification for gerermesaffaires {rest:api}, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/business-groups
Create a business group for an accounting firm
/business-groups/{id}/spaces
List spaces inside a business group
/hub/documents
Push a document into a hub
/hub/payslips
Push a payslip into a hub
/hub/spaces/{spaceId}/payslips
Push a payslip into a specific client space
/registration
Register a new user profile
/profile
Retrieve the current user profile
/business-groups
Create a business group for an accounting firm
/business-groups/{id}/spaces
List spaces inside a business group
/hub/documents
Push a document into a hub
/hub/payslips
Push a payslip into a hub
/hub/spaces/{spaceId}/payslips
Push a payslip into a specific client space
/registration
Register a new user profile
/profile
Retrieve the current user profile
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the GererMesAffaires API by hand means running the OAuth 2.0 flow, refreshing tokens, and navigating a large operation surface for document and payslip exchange yourself. Through Jentic you install once, import GererMesAffaires from the API Directory, complete the OAuth grant once, and your agent calls it.
Permission scoping
GererMesAffaires puts the space id in the URL path (/hub/spaces/{spaceId}/payslips), so a rule can pin your agent to one space: it can push payslips to that space and nothing else. You choose the operations it may call, so broader ones like creating business groups or registration are not included unless you add them.
Credential isolation
Your GererMesAffaires OAuth tokens are stored once, encrypted, by your own Jentic One instance and refreshed at execution time. The raw access and refresh tokens never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'push a payslip to a client space', and Jentic returns the matching GererMesAffaires operation with its input schema so the agent calls the right endpoint without browsing the large operation surface.
Alternatives and complements available in the Jentic catalogue.
Specific to using GererMesAffaires {REST:API} API through Jentic.
Why is there no official OpenAPI spec for GererMesAffaires {REST:API}?
GererMesAffaires does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call GererMesAffaires {REST:API} via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the GererMesAffaires API use?
The API uses OAuth 2.0 (`gma_auth`). Through Jentic, OAuth tokens are stored in the encrypted vault and refreshed automatically - agents receive a scoped execution token rather than the underlying access or refresh tokens.
Can I push payslips to a specific client space with the GererMesAffaires API?
Yes. Call `POST /hub/spaces/{spaceId}/payslips` to push a payslip into a named space, or `POST /hub/payslips` for the hub-default space. Both endpoints accept the file and metadata fields.
How do I provision a new business group through Jentic?
Search Jentic for `create a business group in GererMesAffaires`, load the schema for `POST /business-groups`, and execute with the group name and owner. Jentic handles the OAuth flow so the agent does not see raw tokens.
Does the GererMesAffaires API handle accounting ledgers or tax filing?
No. The API moves documents and manages workspace structure; it does not record ledger entries or file taxes. Combine it with a dedicated accounting system for those workflows.
Can the GererMesAffaires API send a document for e-signature?
Yes - document endpoints include signature workflow fields. Use the document creation endpoints under `/hub/documents` and `/hub/spaces/{spaceId}/documents` and supply the relevant signature parameters.
Can I limit what my agent is allowed to do with the GererMesAffaires API?
Yes. Because you run Jentic One yourself, your own rules decide which GererMesAffaires operations and credentials the agent may use. Since the space id sits in the URL path, such as POST /hub/spaces/{spaceId}/payslips, a rule can pin the agent to a single client space so it only pushes payslips there and nothing else. You also choose the operation set, so broader calls like POST /business-groups or POST /registration are excluded unless you explicitly grant them.
Know of an official OpenAPI document? Contribute it →
For Agents
Push and pull regulated documents, payslips, and customer folders into French SME workspaces and exchange them with accountants. Manage business groups, spaces, hubs, and document signatures programmatically.
Use for: Push a payslip PDF into a client's GererMesAffaires space, Create a new business group for an accounting firm, List all spaces in a business group, Send a contract for e-signature to a client
Not supported: Does not handle accounting ledgers, tax filing, or payroll calculation - use for secure document and payslip exchange between French accountants and clients only.
Jentic publishes the only available OpenAPI specification for GererMesAffaires {REST:API}, keeping it validated and agent-ready. GererMesAffaires is a French secure document and business administration platform used by accountants, advisors, and SMEs to exchange invoices, payslips, contracts, and other regulated documents with their clients. The API exposes document workflows, business groups, spaces, hubs, customer folders, signatures, payslips, and notifications across roughly 280 endpoints. It is most often used to integrate accounting software with the GererMesAffaires hub so client documents flow automatically into the right space.