Contact us
About us
Payneteasy is a leading payment platform provider. Our state-of-the-art technologies and multiple layers of flexibility boost the fastest and most efficient integration and customization.
Business type
Our clients have advantage with the full-fledged FinTech tools. Payneteasy offers technological processing solutions for different payment industry players and large-scale online businesses.
Events

Meet us at conferences around the world

SBC Summit Lisbon

SBC Summit Lisbon

29 Sep-1 Oct, 2026 Lisbon, Portugal
SiGMA Europe

SiGMA Europe

2–5 Nov, 2026 Rome, Italy
View all Upcoming Events

Automate your Payneteasy back office: the UI API is now fully documented

Explore the documented Payneteasy UI API with OpenAPI 3.0.1, 1,500+ operations, scoped access, restricted tokens, and support for AI-driven automation.

08.09.2026
6 min read
Table of contents
  1. Processing vs UI API
  2. What you can automate
  3. Built for AI agents
  4. One contract
  5. Read it in the browser
  6. Choose your access
  7. Find the right call
  8. Why it matters
  9. What an integration looks like
Show all Show all
Do you have a question?
Contact author
Do you have a question?
Contact author

The UI API — the interface behind the screens your team works in every day — now comes with a complete, machine-readable OpenAPI specification: more than 130 services and more than 1,500 operations. What you can call depends on your account level; the specification is documented under Tools → API documentation, behind your Payneteasy login. Everything your team does by hand in the back office is now something you can automate, integrate into your own systems, or hand to an AI agent — on your terms.

Payneteasy back office: Tools and API documentation with the UI and Processing API switch and the OpenAPI specification documents
Tools → API documentation: the UI / Processing switch on top, and the specification documents — OpenAPI 3.0.1 in JSON and YAML, the token-scoped variants, and the legacy Swagger 2.0 — below.

Processing vs UI API

If you already process with Payneteasy, you already use the Processing API — the one that moves money: authorizations, captures, refunds, payouts. The UI API is a different surface — the API behind the screens themselves: Orders, Reports, Tools and Settings. Everything your team currently does by hand: posting adjustments, editing routing, creating endpoints, running reports, onboarding merchants. The UI / Processing switch in the docs shows both; this release documents the UI side in full.

Wiring that back-office work into your own systems — or handing it to an agent — means calling the API underneath, and a machine-readable contract is what turns that into a documented integration instead of a reverse-engineering exercise: you build against documented specifications, not network traffic. This isn’t a preview — the UI API is the same production API the interface itself runs on, versioned under /api/v1. Every method you build against is already live.

The UI API follows the platform: it changes as the product does. Removals and renames are announced in the release notes before they take effect, so you can see them coming.

What you can automate — or hand to an agent

The point isn’t the method count — it’s what stops being manual. For example:

  • Reconciliation — pull settlement and reconciliation reports into your own database on a schedule, instead of exporting them by hand each morning.
  • Merchant onboarding — create a merchant and its endpoints straight from your CRM, instead of re-keying the onboarding form.
  • Adjustments — post a batch of corrections in one call, instead of entering them row by row.

The report pull that took 40 minutes of clicking each morning becomes a cron job — or a task you delegate to an agent. Work your team does by hand becomes work your systems do on a schedule.

Built for AI agents, too

Payneteasy gives an agent two deliberate ways to work with the platform.

  • Payneteasy MCP is the managed path — your agent works with live payment data in plain language, through a layer we run and stand behind.
  • The UI API is the direct path — your agent calls the platform programmatically, and it can act, not just read. What it may touch is entirely yours to decide.

Give a partner or an AI agent a restricted token

A restricted token is issued from your user profile: pick the methods it may call, and the token can do those and nothing else. It’s the right way to hand an internal team, a partner or an AI agent a slice of the API without giving up full access — the token is scoped at issue time, and control stays on your side. You set how long it lives — up to 180 days — and can revoke it at any moment.

For example: an agent that pulls the decline report every hour and flags anomalies needs a token scoped to a few read methods — and can touch nothing beyond them. A write agent that reruns failed payouts gets exactly those methods, and no access to routing or settings.

Note the token still inherits the rights of the user who issued it, intersected with the method list. Issue restricted tokens from a purpose-made service user, not from an admin account.

One contract your tools already understand

The specification is served as OpenAPI 3.0.1 in JSON and YAML — built for codegen and API clients — with a legacy Swagger 2.0 file for older tooling. Point your existing toolchain at it and generate a typed client in minutes, instead of tracing calls by hand.

Read the whole API in the browser

You don’t have to install anything to read it. Every service, operation and field is documented on pages you browse and search right in the back office, each operation at its own address. Open one and you get its description, and its request and response fields with types and explanations, alongside an example response. Requests aren’t sent from the browser — the pages are for reading and understanding the API, not for calling it.

The Payneteasy UI API service catalog, searchable, with a plain-English description for every service
The UI API service catalog — browsable and searchable, every service with a plain-English description. What you see reflects your account: your role decides which services and methods appear, so a merchant sees a smaller surface than a platform administrator.

Choose the access that fits the integration

The specification is served in variants scoped to how you connect:

  • Browser session — for your own team, working inside your signed-in browser session.
  • OAuth 2.0 bearer token — for a standard integration that authenticates like any other API client.
  • Restricted token — scoped to only the methods it was issued for; the right choice for a partner or an AI agent you don’t want to give full API access to.
The getEndPoint operation page showing the request for the OAuth 2.0 bearer, restricted token and browser session access variants
A single operation (getEndPoint), with its request shown for each access variant — OAuth 2.0 bearer, restricted token and browser session — and its response documented field by field.

Every operation page shows the request in all three variants, so you can copy the exact call for the access method you’re using.

Find the right call fast

Operations are grouped by service and by verb — create, get, save, change, remove — and filterable by READ or WRITE, so a reporting integration and a write automation both start from the same searchable catalog.

Operations inside endPointService grouped by verb and filterable by READ or WRITE
Inside a service, operations are grouped by verb and filterable by READ or WRITE, making the right call easier to find.

Why it matters

A documented UI API changes what your team can do with the platform — without changing how the platform works underneath:

  • Build on a real contract — one OpenAPI 3.0.1 document your existing codegen and API clients understand, with no reverse-engineering.
  • Read it in the browser — the whole API is browsable and searchable, each operation at its own address, with nothing to install.
  • Delegate safely — scoped and restricted tokens give a team, a partner or an AI agent exactly the methods they need, while full control stays with you.
  • Automate what used to be manual — the work your staff runs by hand in the back office becomes documented, callable methods you can wire into your own systems.

The result: the operational work that lives in your Payneteasy back office can move into your own workflows, on your own timeline.

What an integration looks like

  1. Get credentials. Client credentials are issued per integration — request them from your account manager. Your integration authenticates as a dedicated service user, so its rights are yours to set and revoke.
  2. Get a token. Post your Payneteasy user credentials to the OAuth endpoint and get a bearer token back.
  3. Find the call. Open Tools → API documentation, choose Browse services, and filter down to the service you need. Every operation page carries the request in all three access variants — copy the OAuth 2.0 bearer one.
  4. Generate a client. Point your codegen at the OAuth-scoped OpenAPI 3.0.1 URL and build against a typed client instead of hand-written requests.

Available now — the specification is documented under Tools → API documentation (what your account can call depends on your access level).

Do you have a question?
Contact author
Talk to a payment expert