canonical: https://jentic.com/apis/swaggerhub.expdemo/access-management

# Expdemo Access Management

This is an example of using OAuth2 Password Flow in a specification to describe security to your API. The API exposes 2 endpoints secured with oauth2 authentication.

## For AI agents

Programmatically server example operation, server heartbeat operation. Covers 2 operations with oauth2 authentication.

## Scope

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

## Capabilities

- Server example operation
- Manage security data programmatically
- Integrate Access Management into automated workflows
- Query and filter Access Management records by parameters
- Monitor Access Management operational status and events

## Use cases

### Security Operations

Use the Access Management to perform security operations programmatically. The API provides 2 endpoints covering core functionality including server example operation, server heartbeat operation.

Example prompt: Call GET /example to server example operation

### Data Retrieval and Monitoring

Query Access Management 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 Access Management endpoint, compare response to last known state, and alert if changed

### AI Agent Integration via Jentic

AI agents discover and call Access Management 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 oauth2 tokens manually.

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

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | /example | Server example operation |
| GET | /ping | Server heartbeat operation |

## Key resources

- **example** — Operations related to example
- **ping** — Operations related to ping

## Why Jentic

- **Setup:** Wiring Access Management by hand means implementing its OAuth2 flow, targeting the correct host, and handling responses yourself. Through Jentic you install once, import Access Management from the API Directory, store the OAuth2 credential once, and your agent calls it.
- **Permission scoping:** Access Management exposes an example operation and a ping check, so scope your agent to the operations it needs, such as the ping health check: you choose the operations it may call, so nothing beyond them is available.
- **Credential handling:** Your Access Management OAuth2 credential 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 'ping the access management service', and Jentic returns the matching Access Management operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Snyk** — Alternative security API
- **Crowdstrike** — Alternative security API

## FAQ

### What authentication does the Access Management use?

The Access Management uses OAuth 2.0 for authorization. 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 server example operation with the Access Management?

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

### What are the rate limits for the Access Management?

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 server example operation through Jentic?

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

### How many endpoints does the Access Management have?

The Access Management exposes 2 endpoints covering example, ping operations.

### Can I limit what my agent is allowed to do with the Access Management API?

Yes. Access Management exposes two operations, the GET /example call and the GET /ping heartbeat check, and because Jentic One is self-hosted by you, your own rules decide which of those the agent may invoke. You can scope an agent to only the ping health check, for instance, so the example operation stays off limits. The same rules govern which OAuth2 credential the agent may use, so it can call only the operations you have explicitly allowed.
