For Agents
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Severa Public Rest API Documentation, 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%2Fvisma.com%2Fvisma" | 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%2Fvisma.com%2Fvisma" | 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 Severa Public Rest API Documentation API.
Get the addresses.
Update (Patch) an address or a part of it.
Delete an address.
Insert an address.
GET STARTED
Programmatically get the addresses., get address by id.. Covers 518 operations with apiKey, oauth2 authentication.
Use for: I need to the addresses., I want to address by id., Search for (patch) an address or a part of it., Find all an address.
Not supported: Does not handle payments, communications, or crm - use for identity and authentication only.
The API uses OAuth2 client creadentials flow. To get the Bearer token for the resources you have to request the token by using route '/token', found from Authentication controller. You need to provide a Client_Id, client_secret and scope needed. The client_id and client_secret can be obtained from Severa UI Rest API settings section. After authentication, calls need to use the Bearer token as auth. The API exposes 518 endpoints secured with apiKey, oauth2 authentication.
Monitor Severa Public Rest API Documentation operational status and events
Patterns agents use Severa Public Rest API Documentation API for, with concrete tasks.
★ Identity and Authentication Operations
Use the Severa Public Rest API Documentation to perform identity auth operations programmatically. The API provides 518 endpoints covering core functionality including get the addresses., get address by id., update (patch) an address or a part of it..
Call GET /v1/addresses to get the addresses.
Automated Activities Management
Automate activities operations by combining multiple Severa Public Rest API Documentation endpoints. Agents can get address by id. and then update (patch) an address or a part of it. in a single workflow.
Call GET /v1/addresses/{guid} to get address by id., then verify the result
AI Agent Integration via Jentic
AI agents discover and call Severa Public Rest API Documentation 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, oauth2 tokens manually.
Search Jentic for 'get the addresses.', load the operation schema, and execute with Jentic-managed credentials
518 endpoints — the api uses oauth2 client creadentials flow.
METHOD
PATH
DESCRIPTION
/v1/addresses
Get the addresses.
/v1/addresses/{guid}
Get address by ID.
/v1/addresses/{guid}
Update (Patch) an address or a part of it.
/v1/addresses/{guid}
Delete an address.
/v1/customers/{customerGuid}/addresses
Insert an address.
/v1/customers/{customerGuid}/addresses
Get customer's addresses
/v1/contactpersons/{contactGuid}/addresses
Get contact person's address
/v1/businessunits
Insert a business unit.
/v1/addresses
Get the addresses.
/v1/addresses/{guid}
Get address by ID.
/v1/addresses/{guid}
Update (Patch) an address or a part of it.
/v1/addresses/{guid}
Delete an address.
/v1/customers/{customerGuid}/addresses
Insert an address.
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Severa Public REST API by hand means running its OAuth 2.0 client-credentials flow, mapping its read, write, and delete scopes to each call, and threading tokens across its large endpoint surface yourself. Through Jentic you install once, import the Severa Public REST API from the API Directory, store the credential once, and your agent calls it.
Permission scoping
Severa puts resource ids in the URL path (/v1/customers/{customerGuid}/addresses and /v1/addresses/{guid}), so a rule can pin your agent to one customer or address and the operations around it. You choose the operations it may call, so a destructive one like deleting an address is not included unless you add it.
Credential isolation
Your Severa OAuth credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. The client secret never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list a customer's addresses' or 'create a business unit', and Jentic returns the matching Severa 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 Severa Public Rest API Documentation API through Jentic.
What authentication does the Severa Public Rest API Documentation use?
The Severa Public Rest API Documentation uses apiKey, oauth2 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 get the addresses. with the Severa Public Rest API Documentation?
Yes. Use the GET /v1/addresses endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Severa Public Rest API Documentation?
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 get the addresses. through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'get the addresses.'. Jentic returns the matching Severa Public Rest API Documentation operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Severa Public Rest API Documentation have?
The Severa Public Rest API Documentation exposes 518 endpoints covering activities, activityparticipants, activitytypes operations.
/v1/customers/{customerGuid}/addresses
Get customer's addresses
/v1/contactpersons/{contactGuid}/addresses
Get contact person's address
/v1/businessunits
Insert a business unit.