For Agents
Manage account holders, balance accounts, payment instruments, sweeps, and transaction rules across an Adyen for Platforms balance platform.
Use for: Create an account holder for a new platform user, Update an account holder's capabilities to enable card issuing, Provision a balance account with a default sweep, Issue a virtual card as a payment instrument under an account holder
Not supported: Does not handle card payment processing, BIN lookup, settlement, or report generation — use for Adyen for Platforms structural configuration only.
The Adyen Configuration API is the core REST surface for Adyen for Platforms. It manages account holders, balance accounts, payment instruments, payment instrument groups, transaction rules, sweeps, network tokens, and grant accounts across a balance platform. The 56 endpoints cover creation, read, update, and lifecycle operations for every structural object Adyen for Platforms exposes — from posting a new accountHolder to retrieving the platform configuration to managing card-level transaction rules.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Adyen Configuration API, 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 Adyen Configuration API.
Create and update account holders, including capabilities and KYC association via POST /accountHolders and PATCH /accountHolders/{id}
Provision balance accounts with currencies, default sweeps, and association to an account holder
Issue and manage payment instruments — physical and virtual cards, bank accounts — under POST /paymentInstruments
Configure automated sweeps that move funds between balance accounts on schedule or trigger
Define transaction rules at the account holder, balance account, payment instrument, or instrument group level to control which transactions are allowed
Inspect platform-level configuration via GET /platforms/{id} and manage grant accounts and network tokens
Patterns agents use Adyen Configuration API for, with concrete tasks.
★ Onboarding a Platform User End to End
When a marketplace or fintech onboards a new seller, freelancer, or sub-merchant, the Configuration API creates the structural objects that represent them in Adyen for Platforms. POST /accountHolders creates the entity, POST /balanceAccounts provisions a balance, and POST /paymentInstruments issues a card or bank account. Each object is updatable as KYC and capabilities evolve.
Call POST /accountHolders with legalEntityId, then POST /balanceAccounts referencing that accountHolderId, then POST /paymentInstruments to issue a virtual card on the new balance account
Dynamic Transaction Rule Management
Compliance and risk teams need to apply rules at multiple levels — block international transactions on cards, cap monthly volume on a balance account, or enforce MCC restrictions on a group of instruments. The Configuration API exposes transaction rules at account holder, balance account, payment instrument, and instrument group scope, so an agent or admin tool can adjust rules at the right level on the fly.
Call POST /transactionRules with entityType=paymentInstrument, scope to a specific paymentInstrumentId, and a ruleRestrictions block that blocks transactions outside the EU
Treasury Sweeps Between Balance Accounts
Treasury teams use automated sweeps to consolidate funds, fund operating accounts, or enforce minimum balances. The Configuration API's sweep endpoints under /balanceAccounts/{balanceAccountId}/sweeps create, read, update, and delete sweep configurations. Combined with the Transfer webhooks, this gives a closed loop: configure the sweep, then react to its events.
Call POST /balanceAccounts/{balanceAccountId}/sweeps with type=push, schedule.type=daily, and counterparty referencing the consolidation balance account
Agent-Driven Platform Operations via Jentic
An ops or fintech-engineering agent can use Jentic to discover and call the right Configuration API operation across 56 endpoints without scraping the Adyen developer portal. The agent searches by intent, loads the operation schema, and executes the call with X-API-Key managed in the Jentic vault.
Use Jentic to search 'create adyen balance account' and execute POST /balanceAccounts with the accountHolderId and currency for a new platform user
56 endpoints — the adyen configuration api is the core rest surface for adyen for platforms.
METHOD
PATH
DESCRIPTION
/accountHolders
Create an account holder
/accountHolders/{id}
Retrieve an account holder by id
/accountHolders/{id}
Update an account holder
/balanceAccounts
Create a balance account
/balanceAccounts/{balanceAccountId}/sweeps
List sweeps on a balance account
/paymentInstruments
Issue a payment instrument (card or bank account)
/transactionRules
Create a transaction rule
/accountHolders
Create an account holder
/accountHolders/{id}
Retrieve an account holder by id
/accountHolders/{id}
Update an account holder
/balanceAccounts
Create a balance account
/balanceAccounts/{balanceAccountId}/sweeps
List sweeps on a balance account
/paymentInstruments
Issue a payment instrument (card or bank account)
/transactionRules
Create a transaction rule
Three things that make agents converge on Jentic-routed access.
Credential isolation
Adyen X-API-Key, basic auth, and clientKey credentials are stored encrypted in the Jentic vault. Agents calling the Configuration API — which can issue cards and move structural state — never hold the raw credentials in their prompt context.
Intent-based discovery
Agents search Jentic by intent (for example 'create adyen balance account' or 'issue virtual card adyen') and Jentic returns the right operation among 56 endpoints with its full input schema, so the agent does not have to scan the developer portal.
Time to first call
Direct Adyen for Platforms integration: 1-2 weeks for credential setup, request/response handling across the structural objects, and webhook wiring. Through Jentic: under a day for the equivalent operations — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Stripe
Stripe Connect and Issuing offer a comparable platform-management surface
Choose Stripe Connect/Issuing when the underlying processor is Stripe rather than Adyen for Platforms
Specific to using Adyen Configuration API through Jentic.
What authentication does the Adyen Configuration API use?
The API supports an apiKey scheme using the X-API-Key header, HTTP basic auth, and a clientKey query parameter for client-side flows. Through Jentic, the X-API-Key is stored in the encrypted vault so agents call any of the 56 endpoints without holding the raw credential.
Can I issue cards through the Adyen Configuration API?
Yes. POST /paymentInstruments with type=card creates a card under a balance account, and PATCH /paymentInstruments/{id} updates its status. Card-level transaction rules are managed via POST /transactionRules with entityType=paymentInstrument.
What are the rate limits for the Adyen Configuration API?
The OpenAPI spec does not declare programmatic rate limits. Adyen documents per-merchant-account throughput limits in their developer portal — coordinate large onboarding batches with your Adyen account manager and prefer paginated reads where available.
How do I create a balance account through Jentic?
Search Jentic for 'create adyen balance account', load the POST /balanceAccounts operation, and execute it with the accountHolderId and currency. Jentic returns the structured response including the new balanceAccountId for use in downstream calls.
Does this API send webhook notifications for balance account changes?
No — this is the REST surface for mutations. Webhook notifications for the same events are delivered by the BalancePlatformConfigurationNotification webhook spec, which fires balancePlatform.balanceAccount.created and similar events when a mutation here completes.
Can I list every balance account owned by an account holder?
Yes. GET /accountHolders/{id}/balanceAccounts returns the balance accounts belonging to the given account holder. Pair with /accountHolders/{id}/transactionRules to inspect rules attached at the account holder level.
GET STARTED