canonical: https://jentic.com/apis/subscribe.linphone.org/subscribe-linphone

# Subscribe Linphone Flexisip Account Manager API

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.

## For AI agents

Programmatically health check, create a space. Covers 71 operations with apiKey, bearer authentication.

## Scope

Does not handle payments, crm, or developer tools - use for communications only.

## Capabilities

- Health check
- Create a space
- List all spaces
- Get a space
- Update a space
- Delete a space
- Set space email configuration

## Use cases

### 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.

Example prompt: 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.

Example prompt: 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.

Example prompt: Search Jentic for 'health check', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | `/ping` | Health check |
| POST | `/spaces` | Create a space |
| GET | `/spaces` | List all spaces |
| GET | `/spaces/{domain}` | Get a space |
| PUT | `/spaces/{domain}` | Update a space |
| DELETE | `/spaces/{domain}` | Delete a space |
| POST | `/spaces/{domain}/email` | Set space email configuration |
| GET | `/spaces/{domain}/email` | Get space email configuration |

## Key resources

- **Account_Creation_Request_Tokens** — Operations for account_creation_request_tokens
- **Account_Creation_Tokens** — Operations for account_creation_tokens
- **Account_Types** — Operations for account_types
- **Accounts** — Operations for accounts
- **Contacts_Lists** — Operations for contacts_lists

## AI readiness

This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.

- **Score:** 66 / 100
- **Maturity:** AI-Aware
- **Dimensions:**
  - Foundational Compliance: 93 / 100
  - Developer Experience & Jentic Compatibility: 63 / 100
  - AI-Readiness & Agent Experience: 49 / 100
  - Agent Usability: 91 / 100
  - Security: 63 / 100
  - AI Discoverability: 62 / 100
- **View full report:** https://jentic.com/apis/subscribe.linphone.org/subscribe-linphone/scorecard
- **How the score is calculated:** https://docs.jentic.com/reference/api-readiness-framework/overview/
- **More about the dimensions:** https://docs.jentic.com/reference/api-readiness-framework/specification/#dimensional-model-overview

### Score it yourself

Every API in the directory is allowlisted, so you can re-score it with no key required.

- **Score your own API:** https://jentic.com/scorecard.md
- **Scoring CLI agent skill:** https://github.com/jentic/jentic-api-scorecard/blob/main/skills/jentic-api-scorecard/SKILL.md

```sh
npx @jentic/api-scorecard-cli score <openapi-url>
```

## Why Jentic

- **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 handling:** 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.
- **Discovery method:** 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.

## Related APIs

- **Twilio** — Alternative communications API
- **Sendgrid** — Alternative communications API
- **Pusher** — Complementary communications API

## FAQ

### 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.

### Can I limit what my agent is allowed to do with the Flexisip Account Manager API?

Yes. Jentic One is self-hosted, so your own rules decide which Flexisip operations and credentials the agent may use. Because Flexisip puts the space domain in the URL path (`/spaces/{domain}`), you can pin the agent to a single space, letting it read and update that one space and nothing else. You also choose which operations it may call, so destructive ones like DELETE `/spaces/{domain}` stay off limits unless you explicitly add them.
