canonical: https://jentic.com/apis/swaggerhub.pgaldamez/api-visanet-authorization

# Pgaldamez API Visanet Authorization

API encargada de la autorizacion de transacciones. The API exposes 3 endpoints secured with apiKey authentication.

## For AI agents

Programmatically authorization, void. Covers 3 operations with apiKey authentication.

## Scope

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

## Capabilities

- Authorization
- Void
- Integrate API Visanet Authorization into automated workflows
- Query and filter API Visanet Authorization records by parameters
- Monitor API Visanet Authorization operational status and events

## Use cases

### Identity and Authentication Operations

Use the API Visanet Authorization to perform identity auth operations programmatically. The API provides 3 endpoints covering core functionality including authorization, void, voidbackoffice.

Example prompt: Call POST /authorization/{product}/{merchantId} to authorization

### Automated Authorization API Management

Automate authorization API operations by combining multiple API Visanet Authorization endpoints. Agents can void and then voidbackoffice in a single workflow.

Example prompt: Call POST /void/{product}/{merchantId} to void, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call API Visanet 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 apiKey tokens manually.

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

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | /authorization/{product}/{merchantId} | Authorization |
| POST | /void/{product}/{merchantId} | Void |
| POST | /void/{product}/{merchantId}/{backofficeId} | VoidBackOffice |

## Key resources

- **Authorization Api** — RESTful API to authorize transactions.
- **Void Api** — RESTful API to void transactions.

## Why Jentic

- **Setup:** Wiring API Visanet Authorization by hand means passing the access token in the Authorization header, threading product and merchant ids through each path, and handling the authorization and void POST responses yourself. Through Jentic you install once, import API Visanet Authorization from the API Directory, store the access token once, and your agent calls it.
- **Permission scoping:** API Visanet Authorization puts the product and merchant id in the URL path (/authorization/{product}/{merchantId}), so a rule can pin your agent to one merchant's authorizations and nothing else. You choose the operations it may call, so a reversal like void is not included unless you add it.
- **Credential handling:** Your API Visanet Authorization access token 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 'authorize a transaction' or 'void a merchant authorization', and Jentic returns the matching API Visanet Authorization 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 API Visanet Authorization use?

The API Visanet Authorization uses an API key passed in the `Authorization` header. 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 authorization with the API Visanet Authorization?

Yes. Use the POST /authorization/{product}/{merchantId} endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the API Visanet 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 authorization through Jentic?

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

### How many endpoints does the API Visanet Authorization have?

The API Visanet Authorization exposes 3 endpoints covering authorization API, void API operations.

### Can I limit what my agent is allowed to do with the API Visanet Authorization?

Yes. Jentic One is self-hosted, so your own rules decide which operations and credentials the agent may use. Because API Visanet Authorization carries the product and merchant id in the URL path (/authorization/{product}/{merchantId}), you can pin the agent to a single merchant's authorizations and nothing else. You also choose which operations it may call, so a reversal such as POST /void/{product}/{merchantId} or VoidBackOffice stays off limits unless you explicitly grant it.
