canonical: https://jentic.com/apis/swaggerhub.mashakroichuk/api

# Mashakroichuk API со стороны ТБанк

API со стороны ТБанк. The API exposes 3 endpoints secured with basic authentication.

## For AI agents

Programmatically активация кредита с финальными условиями, сообщение о закрытии рко. Covers 3 operations with basic authentication.

## Scope

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

## Capabilities

- Активация кредита с финальными условиями
- Сообщение о закрытии РКО
- Отказ клиента от оффера
- Query and filter API со стороны ТБанк records by parameters
- Monitor API со стороны ТБанк operational status and events

## Use cases

### Developer Tools Operations

Use the API со стороны ТБанк to perform developer tools operations programmatically. The API provides 3 endpoints covering core functionality including активация кредита с финальными условиями, сообщение о закрытии рко, отказ клиента от оффера.

Example prompt: Call POST /api/v1/application/activate to активация кредита с финальными условиями

### Automated ApplicationController Management

Automate applicationcontroller operations by combining multiple API со стороны ТБанк endpoints. Agents can сообщение о закрытии рко and then отказ клиента от оффера in a single workflow.

Example prompt: Call POST /api/v1/client/rkoClosed to сообщение о закрытии рко, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call 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 'активация кредита с финальными условиями', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | /api/v1/application/activate | Активация кредита с финальными условиями |
| POST | /api/v1/client/rkoClosed | Сообщение о закрытии РКО |
| DELETE | /api/v1/application/clientReject | Отказ клиента от оффера |

## Key resources

- **ApplicationController** — Operations related to ApplicationController
- **ClientInfoController** — Operations related to ClientInfoController

## Why Jentic

- **Setup:** Wiring the T-Bank API by hand means learning its HTTP basic auth, coding the application-activate, close, and reject calls, and handling retries yourself. Through Jentic you install once, import the T-Bank API from the API Directory, store the basic credentials once, and your agent calls it.
- **Permission scoping:** This API carries its application and client targets in the request body rather than the URL path, so scope the agent to the operations it needs, such as activating an application. You choose the operations it may call, so destructive ones like client rejection are not included unless you add them.
- **Credential handling:** Your T-Bank 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 'activate a credit with final terms', and Jentic returns the matching T-Bank 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 API со стороны ТБанк use?

The 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 активация кредита с финальными условиями with the API со стороны ТБанк?

Yes. Use the POST /api/v1/application/activate endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the 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 активация кредита с финальными условиями through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'активация кредита с финальными условиями'. Jentic returns the matching API со стороны ТБанк operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the API со стороны ТБанк have?

The API со стороны ТБанк exposes 3 endpoints covering applicationcontroller, clientinfocontroller operations.

### Can I limit what my agent is allowed to do with the T-Bank API?

Yes. Because you run Jentic One yourself, your own rules decide which of the three T-Bank operations the agent may call and which basic credentials it may use. You can allow only the activation endpoint (POST /api/v1/application/activate) while withholding the RKO closure notice (POST /api/v1/client/rkoClosed) and the destructive client rejection (DELETE /api/v1/application/clientReject). Since the application and client targets travel in the request body rather than the URL, scoping is done at the operation level, so a rejection call is never available unless you explicitly grant it.
