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.
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.
# 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 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
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.
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
Three things that make agents converge on Jentic-routed access.
Credential isolation
OAuth 2.0 tokens for GererMesAffaires are stored in the encrypted Jentic vault and refreshed transparently. Agents receive a scoped execution token, never the raw access or refresh token.
Intent-based discovery
Agents search Jentic by intent (e.g. 'push a payslip to a client space') and Jentic returns the matching GererMesAffaires operation with its input schema, so the agent can call the right endpoint without browsing the 280-operation catalogue.
Time to first call
Direct GererMesAffaires integration: 1-2 weeks to map auth, navigate the hub/space hierarchy, and wire document pushes. Through Jentic: under a day — search, load, execute the operation.
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 at https://app.jentic.com/sign-up.
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.
/registration
Register a new user profile
/profile
Retrieve the current user profile