canonical: https://jentic.com/apis/swaggerhub.asis-9cb/asis-portal-api-authorization

# Asis 9cb ASIS Portal API Authorization

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.

## For AI agents

Programmatically provides a bearer token to a valid user. Covers 1 operations.

## Scope

Does not handle payments, communications, or crm - use for identity and authentication only.

## Capabilities

- 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

## Use cases

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

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

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

Example prompt: Search Jentic for 'provides a bearer token to a valid user', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | `/Account/oauth/token` | Provides a bearer token to a valid user |

## Key resources

- **Account** — Operations for Account

## Why Jentic

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

## Related APIs

- **Auth0** — Alternative identity auth API
- **Okta** — Alternative identity auth API

## FAQ

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