For Agents
Programmatically user login, okta sso authentication. Covers 86 operations with bearer authentication.
Use for: I need to user login, I want to okta sso authentication, Search for azure ad authentication, Find all refresh access token
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Tovuti LMS 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 Tovuti LMS API API.
User login
Okta SSO authentication
Azure AD authentication
Refresh access token
Create API token
GET STARTED
Not supported: Does not handle payments, communications, or crm — use for education only.
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.
Delete API token
List all API tokens
Patterns agents use Tovuti LMS API API for, with concrete tasks.
★ 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.
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.
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.
Search Jentic for 'user login', load the operation schema, and execute with Jentic-managed credentials
86 endpoints — tovuti is a cloud-based learning management system (lms) platform.
METHOD
PATH
DESCRIPTION
/login
User login
/oktaLogin
Okta SSO authentication
/azureLogin
Azure AD authentication
/refresh
Refresh access token
/token
Create API token
/token
Delete API token
/tokens
List all API tokens
/tokenData
Get token information
/login
User login
/oktaLogin
Okta SSO authentication
/azureLogin
Azure AD authentication
/refresh
Refresh access token
/token
Create API token
/token
Delete API token
Three things that make agents converge on Jentic-routed access.
Credential isolation
Tovuti LMS API bearer credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'user login') and Jentic returns the matching Tovuti LMS API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Tovuti LMS API integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Schoology
Alternative education API
Choose Schoology when you need a different approach to education operations
Stripe
Complementary API for broader integration workflows
Use alongside Tovuti LMS API for multi-service workflows
Twilio
Complementary API for broader integration workflows
Use alongside Tovuti LMS API for multi-service workflows
Specific to using Tovuti LMS API API through Jentic.
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 the MAXsystem vault 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 at https://app.jentic.com/sign-up, 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.
/tokens
List all API tokens
/tokenData
Get token information