canonical: https://jentic.com/apis/tovuti.io/tovuti

# Tovuti LMS API

Tovuti is a cloud-based Learning Management System (LMS) platform. This API provides programmatic access to manage users, courses, lessons, quizzes, events, teams, media, and more. The API exposes 86 endpoints secured with bearer authentication.

## For AI agents

Programmatically user login, okta sso authentication. Covers 86 operations with bearer authentication.

## Scope

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

## Capabilities

- User login
- Okta SSO authentication
- Azure AD authentication
- Refresh access token
- Create API token
- Delete API token
- List all API tokens

## Use cases

### Education Operations

Use the Tovuti LMS API to perform education operations programmatically. The API provides 86 endpoints covering core functionality including user login, okta sso authentication, azure ad authentication.

Example prompt: Call POST /login to user login

### Automated Authentication Management

Automate authentication operations by combining multiple Tovuti LMS API endpoints. Agents can okta sso authentication and then azure ad authentication in a single workflow.

Example prompt: Call POST /oktaLogin to okta sso authentication, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Tovuti LMS 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 bearer tokens manually.

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

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | `/login` | User login |
| POST | `/oktaLogin` | Okta SSO authentication |
| POST | `/azureLogin` | Azure AD authentication |
| POST | `/refresh` | Refresh access token |
| POST | `/token` | Create API token |
| DELETE | `/token` | Delete API token |
| GET | `/tokens` | List all API tokens |
| GET | `/tokenData` | Get token information |

## Key resources

- **Authentication** — Login, token management, and SSO endpoints
- **Users** — User management operations
- **Courses** — Course management
- **Lessons** — Lesson management and progress tracking
- **Quizzes** — Quiz and assessment management

## Why Jentic

- **Setup:** Wiring the Tovuti LMS API by hand means obtaining and sending its bearer token, tracking the api.tovuti.io v1 host, and coding your own token refresh and request handling. Through Jentic you install once, import the Tovuti LMS API from the API Directory, store the token once, and your agent calls it.
- **Permission scoping:** Tovuti's login and token operations carry their target in the request body rather than the URL path, so scope the agent to the operations it needs, such as logging in or listing tokens. You choose which operations are allowed, so ones like revoking a token are left out unless you add them.
- **Credential handling:** Your Tovuti bearer token 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 'log in a user' or 'list active tokens', and Jentic returns the matching Tovuti operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Schoology** — Alternative education API
- **Stripe** — Complementary API for broader integration workflows
- **Twilio** — Complementary API for broader integration workflows

## FAQ

### What authentication does the Tovuti LMS API use?

The Tovuti LMS API uses a Bearer token in the Authorization header. 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 user login with the Tovuti LMS API?

Yes. Use the POST /login endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the Tovuti LMS 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 user login through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'user login'. Jentic returns the matching Tovuti LMS API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the Tovuti LMS API have?

The Tovuti LMS API exposes 86 endpoints covering authentication, users, courses operations.

### Can I limit what my agent is allowed to do with the Tovuti LMS API?

Yes. Because Jentic One is self-hosted, you run the execution layer and your own rules decide which Tovuti operations and credentials the agent may use. Tovuti's login and token operations carry their target in the request body rather than the URL path, so you scope the agent to just the operations it needs, such as logging a user in or listing tokens. Sensitive operations like revoking a token stay out of reach unless you explicitly allow them, and the stored bearer token is injected only for the calls you have approved.
