canonical: https://jentic.com/apis/swaggerhub.datasys/balkoboxy---user-management-api

# Datasys BalíkoBOXy - User Management API

API systému BalíkoBOXy Slovenské pošty pro správu uživatelských účtů operátorů boxů. Changelog: - v1.0.1 (20.9.2022): Doplněny URL pro testovací prostředí Datasys a produkční prostředí Slovenské pošty. The API exposes 3 endpoints secured with basic authentication.

## For AI agents

Programmatically vrátí seznam uživatelských účtů, vytvoří nebo aktualizuje účet uživatele. Covers 3 operations with basic authentication.

## Scope

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

## Capabilities

- Vrátí seznam uživatelských účtů
- Vytvoří nebo aktualizuje účet uživatele
- Smaže účet uživatele
- Query and filter BalíkoBOXy - User Management API records by parameters
- Monitor BalíkoBOXy - User Management API operational status and events

## Use cases

### Developer Tools Operations

Use the BalíkoBOXy - User Management API to perform developer tools operations programmatically. The API provides 3 endpoints covering core functionality including vrátí seznam uživatelských účtů, vytvoří nebo aktualizuje účet uživatele, smaže účet uživatele.

Example prompt: Call GET `/tenant/{tenantId}/user` to vrátí seznam uživatelských účtů

### Automated user Management

Automate user operations by combining multiple BalíkoBOXy - User Management API endpoints. Agents can vytvoří nebo aktualizuje účet uživatele and then smaže účet uživatele in a single workflow.

Example prompt: Call PUT `/tenant/{tenantId}/user/{userName}` to vytvoří nebo aktualizuje účet uživatele, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call BalíkoBOXy - User Management 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 basic tokens manually.

Example prompt: Search Jentic for 'vrátí seznam uživatelských účtů', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | `/tenant/{tenantId}/user` | Vrátí seznam uživatelských účtů |
| PUT | `/tenant/{tenantId}/user/{userName}` | Vytvoří nebo aktualizuje účet uživatele |
| DELETE | `/tenant/{tenantId}/user/{userName}` | Smaže účet uživatele |

## Key resources

- **user** — Správa uživatelských účtů

## Why Jentic

- **Setup:** Wiring the BalikoBOXy User Management API by hand means setting up its HTTP basic auth, choosing among the SwaggerHub and slposta.sk hosts, and handling retries yourself. Through Jentic you install once, import the BalikoBOXy User Management API from the API Directory, store the basic credentials once, and your agent calls it.
- **Permission scoping:** This API puts the tenant and user name in the URL path (`/tenant/{tenantId}/user/{userName}`), so a rule can pin your agent to one tenant's users. You choose the operations it may call, so a destructive one like deleting a user is not included unless you add it, leaving listing and updating only.
- **Credential handling:** Your BalikoBOXy User Management API basic credentials are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'list users for a tenant' or 'update a user account', and Jentic returns the matching BalikoBOXy User Management API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Github** — Alternative developer tools API
- **Gitlab** — Alternative developer tools API

## FAQ

### What authentication does the BalíkoBOXy - User Management API use?

The BalíkoBOXy - User Management API uses HTTP Basic authentication with username and password. 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 vrátí seznam uživatelských účtů with the BalíkoBOXy - User Management API?

Yes. Use the GET `/tenant/{tenantId}/user` endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the BalíkoBOXy - User Management 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 vrátí seznam uživatelských účtů through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'vrátí seznam uživatelských účtů'. Jentic returns the matching BalíkoBOXy - User Management API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the BalíkoBOXy - User Management API have?

The BalíkoBOXy - User Management API exposes 3 endpoints covering user operations.

### Can I limit what my agent is allowed to do with the BalíkoBOXy User Management API?

Yes. Jentic One is self-hosted by you, so your own rules decide which operations and credentials your agent may use. Because this API carries the tenant and user name in the URL path (`/tenant/{tenantId}/user/{userName}`), you can pin the agent to a single tenant's users, and you choose which of the three operations it may call. That means you can grant listing users (GET) and creating or updating them (PUT) while withholding the destructive delete-user operation (DELETE) unless you explicitly add it.
