Know of an official OpenAPI document? Contribute it →
For Agents
Programmatically get functions for a terminal id, post-terminal-by-terminalid-functions-by-functionid. Covers 3 operations.
Use for: I need to functions for a terminal id, I want to post-terminal-by-terminalid-functions-by-functionid, Search for function definition for a terminal id, List all records from MPos POS Servicios
Not supported: Does not handle payments, communications, or crm - use for developer tools only.
MPos POS Servicios API. The API exposes 3 endpoints.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the MPos POS Servicios, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fswaggerhub.visanet%2Fswaggerhub-visanet" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fswaggerhub.visanet%2Fswaggerhub-visanet" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with MPos POS Servicios API.
Get functions for a Terminal Id
post-terminal-by-terminalid-functions-by-functionid
Integrate MPos POS Servicios into automated workflows
Query and filter MPos POS Servicios records by parameters
Monitor MPos POS Servicios operational status and events
Patterns agents use MPos POS Servicios API for, with concrete tasks.
★ Developer Tools Operations
Use the MPos POS Servicios to perform developer tools operations programmatically. The API provides 3 endpoints covering core functionality including get functions for a terminal id, post-terminal-by-terminalid-functions-by-functionid, get function definition for a terminal id.
Call GET /terminal/{terminalId}/functions to get functions for a terminal id
Automated terminal Management
Automate terminal operations by combining multiple MPos POS Servicios endpoints. Agents can post-terminal-by-terminalid-functions-by-functionid and then get function definition for a terminal id in a single workflow.
Call POST /terminal/{terminalId}/functions/{functionId} to post-terminal-by-terminalid-functions-by-functionid, then verify the result
AI Agent Integration via Jentic
AI agents discover and call MPos POS Servicios 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.
Search Jentic for 'get functions for a terminal id', load the operation schema, and execute with Jentic-managed credentials
3 endpoints — mpos pos servicios api.
METHOD
PATH
DESCRIPTION
/terminal/{terminalId}/functions
Get functions for a Terminal Id
/terminal/{terminalId}/functions/{functionId}
post-terminal-by-terminalid-functions-by-functionid
/terminal/{terminalId}/functions/{functionId}
Get function definition for a Terminal Id
/terminal/{terminalId}/functions
Get functions for a Terminal Id
/terminal/{terminalId}/functions/{functionId}
post-terminal-by-terminalid-functions-by-functionid
/terminal/{terminalId}/functions/{functionId}
Get function definition for a Terminal Id
What agents get from Jentic-routed access to this vendor.
Setup
Wiring MPos POS Servicios by hand means pointing at its api.posservicios.quiputech.com host, handling its open (no-auth) access, and coding its terminal-function calls yourself. Through Jentic you install once, import MPos POS Servicios from the API Directory, store any needed config once, and your agent calls it.
Permission scoping
MPos POS Servicios puts the terminal id in the URL path (/terminal/{terminalId}/functions/...), so a rule can pin your agent to one terminal: it can list and read functions for that terminal and nothing else. You choose the operations it may call, so activating a function with POST /terminal/{terminalId}/functions/{functionId} is not included unless you add it.
Credential isolation
This API requires no credential, and any config your setup needs 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.
Intent-based discovery
Agents search Jentic by intent such as 'list functions for a terminal' or 'read a terminal function', and Jentic returns the matching MPos POS Servicios operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using MPos POS Servicios API through Jentic.
What authentication does the MPos POS Servicios use?
The MPos POS Servicios 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 get functions for a terminal id with the MPos POS Servicios?
Yes. Use the GET /terminal/{terminalId}/functions endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the MPos POS Servicios?
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 get functions for a terminal id through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'get functions for a terminal id'. Jentic returns the matching MPos POS Servicios operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the MPos POS Servicios have?
The MPos POS Servicios exposes 3 endpoints covering terminal operations.
Can I limit what my agent is allowed to do with the MPos POS Servicios API?
Yes. Because you run Jentic One yourself, your own rules decide which MPos POS Servicios operations and credentials the agent may use. Since the terminal id sits in the URL path, you can pin the agent to a single terminal and grant only the read operations, so it lists functions with GET /terminal/{terminalId}/functions and reads a definition with GET /terminal/{terminalId}/functions/{functionId} and nothing else. Activating a function with POST /terminal/{terminalId}/functions/{functionId} stays blocked unless you explicitly allow it.
GET STARTED