Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the ASIS Portal API Authorization, 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%2Fswaggerhub.asis-9cb%2Fasis-portal-api-authorization" | 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%2Fswaggerhub.asis-9cb%2Fasis-portal-api-authorization" | 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 ASIS Portal API Authorization API.
Provides a bearer token to a valid user
Manage identity auth data programmatically
Integrate ASIS Portal API Authorization into automated workflows
Query and filter ASIS Portal API Authorization records by parameters
Monitor ASIS Portal API Authorization operational status and events
GET STARTED
Patterns agents use ASIS Portal API Authorization API for, with concrete tasks.
★ Identity and Authentication Operations
Use the ASIS Portal API Authorization to perform identity auth operations programmatically. The API provides 1 endpoints covering core functionality including provides a bearer token to a valid user.
Call POST /Account/oauth/token to provides a bearer token to a valid user
Data Retrieval and Monitoring
Query ASIS Portal API Authorization resources on a schedule to track changes, generate alerts, or feed downstream dashboards. Agents poll relevant endpoints, compare against previous state, and trigger actions when thresholds are crossed.
Poll the primary ASIS Portal API Authorization endpoint, compare response to last known state, and alert if changed
AI Agent Integration via Jentic
AI agents discover and call ASIS Portal API Authorization 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 none tokens manually.
Search Jentic for 'provides a bearer token to a valid user', load the operation schema, and execute with Jentic-managed credentials
1 endpoints — use this endpoint to request the oauth token (bearer token) to authorize your application to access asis resources.
METHOD
PATH
DESCRIPTION
/Account/oauth/token
Provides a bearer token to a valid user
/Account/oauth/token
Provides a bearer token to a valid user
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the ASIS Portal API Authorization by hand means choosing between the portaltest and portal automatedsecurityis.com hosts and formatting the token POST to mint a bearer token yourself. Through Jentic you install once, import the ASIS Portal API Authorization from the API Directory, and your agent calls it without that hand-wiring.
Permission scoping
The credentials for this API travel in the request body, not the URL path, so scope by operation: limit the agent to the operations it needs, such as requesting a bearer token, and leave everything else out. You choose the operations it may call, so it does only what you allow.
Credential isolation
This token endpoint declares no authentication itself, so there is no key to manage; any bearer token it returns is stored once, encrypted, by your own Jentic One instance and injected at execution time, never entering the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'get a bearer token for a valid user', and Jentic returns the matching 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 ASIS Portal API Authorization API through Jentic.
What authentication does the ASIS Portal API Authorization use?
The ASIS Portal API Authorization uses no 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 provides a bearer token to a valid user with the ASIS Portal API Authorization?
Yes. Use the POST /Account/oauth/token endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the ASIS Portal API Authorization?
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 provides a bearer token to a valid user through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'provides a bearer token to a valid user'. Jentic returns the matching ASIS Portal API Authorization operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the ASIS Portal API Authorization have?
The ASIS Portal API Authorization exposes 1 endpoints covering account operations.
Can I limit what my agent is allowed to do with the ASIS Portal API Authorization?
Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent may use. This API exposes a single operation, POST /Account/oauth/token, which mints a bearer token for a valid user, so you scope the agent to just that token request and leave every other operation out. Since the credentials travel in the request body rather than the URL, you control exactly what the agent can call and nothing beyond it.
Know of an official OpenAPI document? Contribute it →
For Agents
Programmatically provides a bearer token to a valid user. Covers 1 operations.
Use for: I need to provides a bearer token to a valid user, Find available identity auth operations, Get the current status of ASIS Portal API Authorization resources, List all records from ASIS Portal API Authorization
Not supported: Does not handle payments, communications, or crm - use for identity and authentication only.
Use this endpoint to request the OAuth token (bearer token) to authorize your application to access ASIS resources. You can pass this bearer token in your subsequent individual ASIS API endpoint requests. The API exposes 1 endpoints.