For Agents
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Flexisip Account Manager 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%2Fsubscribe.linphone.org%2Fsubscribe-linphone" | 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%2Fsubscribe.linphone.org%2Fsubscribe-linphone" | 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 Flexisip Account Manager API.
Health check
Create a space
List all spaces
Get a space
GET STARTED
Programmatically health check, create a space. Covers 71 operations with apiKey, bearer authentication.
Use for: I need to health check, I want to a space, Search for all spaces, Find all a space
Not supported: Does not handle payments, crm, or developer tools - use for communications only.
REST API for the Flexisip Account Manager (Linphone SIP service). Provides account management, space configuration, contact management, vCard storage, statistics tracking, push notifications, and authentication token management. The API exposes 71 endpoints secured with apiKey, bearer authentication.
Update a space
Delete a space
Set space email configuration
Patterns agents use Flexisip Account Manager API for, with concrete tasks.
★ Communications Operations
Use the Flexisip Account Manager API to perform communications operations programmatically. The API provides 71 endpoints covering core functionality including health check, create a space, list all spaces.
Call GET /ping to health check
Automated Account_Creation_Request_Tokens Management
Automate account_creation_request_tokens operations by combining multiple Flexisip Account Manager API endpoints. Agents can create a space and then list all spaces in a single workflow.
Call POST /spaces to create a space, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Flexisip Account Manager API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle apiKey, bearer tokens manually.
Search Jentic for 'health check', load the operation schema, and execute with Jentic-managed credentials
71 endpoints — rest api for the flexisip account manager (linphone sip service).
METHOD
PATH
DESCRIPTION
/ping
Health check
/spaces
Create a space
/spaces
List all spaces
/spaces/{domain}
Get a space
/spaces/{domain}
Update a space
/spaces/{domain}
Delete a space
/spaces/{domain}/email
Set space email configuration
/spaces/{domain}/email
Get space email configuration
/ping
Health check
/spaces
Create a space
/spaces
List all spaces
/spaces/{domain}
Get a space
/spaces/{domain}
Update a space
/spaces/{domain}
Delete a space
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Flexisip Account Manager API by hand means choosing between its x-api-key header and bearer JWT auth and managing space and account state yourself. Through Jentic you install once, import the Flexisip Account Manager API from the API Directory, store the credential once, and your agent calls it.
Permission scoping
Flexisip puts the space domain in the URL path (/spaces/{domain}), so a rule can pin your agent to one space: it can read and update that space and nothing else. You choose the operations it may call, so destructive ones like deleting a space are not included unless you add them.
Credential isolation
Your Flexisip Account Manager credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'check service health' or 'create a space', and Jentic returns the matching Flexisip operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Flexisip Account Manager API through Jentic.
What authentication does the Flexisip Account Manager API use?
The Flexisip Account Manager API uses apiKey, bearer authentication. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I health check with the Flexisip Account Manager API?
Yes. Use the GET /ping endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Flexisip Account Manager API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I health check through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'health check'. Jentic returns the matching Flexisip Account Manager API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Flexisip Account Manager API have?
The Flexisip Account Manager API exposes 71 endpoints covering account_creation_request_tokens, account_creation_tokens, account_types operations.
/spaces/{domain}/email
Set space email configuration
/spaces/{domain}/email
Get space email configuration