Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHubOpen Standards
Resources
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Developer Tools / Adyen / Adyen Management API (v1)
Adyen Management API (v1) logo

Adyen Management API (v1)

Browse all Adyen APIs
✓ Official Vendor SpecDeveloper ToolsMonitoring ObservabilityapiKey, basic130 EndpointsREST

For Agents

Programmatically configure Adyen merchant accounts, stores, terminals, payment methods, API credentials, and webhooks across companies and merchants on the v1 Management API.

Use for: I need to create a webhook subscription on a company account, List all merchant accounts under a company, Generate a new API key for an API credential, Add an allowed origin to an existing API credential

Not supported: Does not handle payment authorisation, balance transfers, or chargeback responses - use for company, merchant, store, terminal, and webhook configuration only.

Configure and manage Adyen company and merchant accounts, stores, payment terminals, payment methods, users, API credentials, allowed origins, webhooks, and Android apps and certificates from a single REST surface. Version 1 of the Management API exposes 130 operations against /v1, covering company-level, merchant-level, and store-level configuration without requiring access to the Customer Area UI. New integrations should consider Management API v3, which is the actively evolving version.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Adyen Management API (v1) to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Adyen Management API (v1), 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.

1

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%2Fadyen.com%2Fadyen-management-service-v1" | sh
2

Step 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%2Fadyen.com%2Fadyen-management-service-v1" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic 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.

Capabilities

What an agent can do with Adyen Management API (v1) API.

Manage company and merchant accounts including listing, retrieval, and configuration updates

Provision and rotate API credentials, API keys, client keys, and allowed origins

Configure payment methods on merchant accounts and approve or disable them per channel

Manage stores under merchant accounts including creation, splits, and reference data

Manage payment terminal estates including assignment, settings, ordering, and Android apps

Create, update, and delete webhook subscriptions and rotate their HMAC keys

Manage users at company and merchant level including roles and access scopes

Use Cases

Patterns agents use Adyen Management API (v1) API for, with concrete tasks.

★ Webhook and Credential Provisioning

Provision API credentials and webhook subscriptions across an Adyen account hierarchy from infrastructure-as-code or a platform admin tool, rather than clicking through the Customer Area. The Management API v1 surface covers credential creation, API key rotation, allowed origin updates, and webhook subscription lifecycle on company and merchant accounts. Useful for platforms onboarding new merchants programmatically.

POST a new API credential under companyId, then POST an allowed origin and call /generateApiKey to issue the key, finally storing it in the secrets manager

Terminal Estate Management

Manage a payment terminal estate at scale by listing terminals, assigning them to stores, updating settings, and inspecting Android apps and certificates installed on them. The Management API exposes the estate via company-level and merchant-level endpoints, so a retailer with many merchant accounts can centralise operations. Useful for retailers running thousands of terminals across stores and merchants.

List terminals under merchantId, identify the unassigned ones, and assign each to its destination store using the matching Management API operation

Multi-Merchant Configuration Audit

Run periodic audits across a company hierarchy by listing merchants, stores, payment methods, and webhook subscriptions and comparing the live configuration against the platform's source-of-truth. The Management API's broad surface makes this practical without scraping the Customer Area. Useful for platforms with many merchants where configuration drift causes payment failures.

List all merchants under companyId, then for each merchant fetch payment methods and webhooks, and write the diff against the source-of-truth into the audit table

AI Agent Platform Operations

Operations agents change Adyen configuration through Jentic without holding raw API keys. The agent searches Jentic for 'rotate Adyen API key' or 'create webhook subscription', receives the matching Management API operation schema, and executes the call. Credentials remain isolated in your Jentic One instance while the operation runs against the v1 surface.

Search Jentic for 'list Adyen merchant accounts under a company', load the schema, and call /companies/{companyId}/merchants to feed the operations dashboard

Key Endpoints

130 endpoints — configure and manage adyen company and merchant accounts, stores, payment terminals, payment methods, users, api credentials, allowed origins, webhooks, and android apps and certificates from a single rest surface.

METHOD

PATH

DESCRIPTION

GET

/companies/{companyId}/merchants

List merchant accounts under a company

GET

/companies/{companyId}/apiCredentials

List company-level API credentials

POST

/companies/{companyId}/apiCredentials/{apiCredentialId}/generateApiKey

Generate a new API key for an API credential

POST

/companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins

Add an allowed origin to an API credential

GET

/companies/{companyId}/webhooks

List webhook subscriptions on a company account

GET

/companies/{companyId}/androidApps

List Android apps available to terminals under a company

GET

/companies/{companyId}

Get a company account

GET

/companies/{companyId}/merchants

List merchant accounts under a company

GET

/companies/{companyId}/apiCredentials

List company-level API credentials

POST

/companies/{companyId}/apiCredentials/{apiCredentialId}/generateApiKey

Generate a new API key for an API credential

POST

/companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins

Add an allowed origin to an API credential

GET

/companies/{companyId}/webhooks

List webhook subscriptions on a company account

GET

/companies/{companyId}/androidApps

List Android apps available to terminals under a company

GET

/companies/{companyId}

Get a company account

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Adyen Management API v1 by hand means handling its X-API-Key or basic auth, targeting the v1 management test host, and threading the companyId through a large configuration surface. Through Jentic you install once, import the Management API v1 from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

Management v1 puts the companyId in the URL path (/companies/{companyId}/...), so a rule can pin your agent to one company: it can list that company's merchants, webhooks, and API credentials and nothing else. You choose the operations it may call, so API-key generation and allowed-origin writes stay out unless you add them.

Credential management

Credential isolation

Your Adyen X-API-Key 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

Intent-based discovery

Agents search Jentic by intent such as 'list adyen merchants' or 'rotate an API key', and Jentic returns the matching Management API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Adyen Management API (v3)

→

The actively evolving v3 of the same Management API surface

Choose v3 for new integrations; choose v1 only when extending an existing integration that already targets v1

Complementary

Adyen Management Webhooks

→

Webhook payload spec for events on Management API resources

Use the Management API to create webhook subscriptions and the Management Webhooks spec to parse the resulting events

Complementary

Adyen Checkout API

→

Processes payments using merchant accounts configured through Management

Use Management to provision merchant accounts and Checkout to process payments on those accounts

Alternative

Stripe API

Stripe's account and webhook configuration is exposed through resources on the main Stripe API

Choose Stripe when your processor is Stripe and configuration is part of the same API; choose Adyen Management for Adyen accounts

FAQs

Specific to using Adyen Management API (v1) API through Jentic.

What authentication does the Adyen Management API v1 use?

The Management API accepts an API key in the X-API-Key header or HTTP Basic authentication with web service user credentials. Generate the key from your Adyen Customer Area and grant it the management roles you need. Through Jentic, the X-API-Key value is held encrypted in your Jentic One instance and agents authenticate with scoped tokens, so the raw key never enters agent context.

Should I use Management API v1 or v3?

Adyen actively evolves the Management API on v3, which is the recommended version for new integrations. Version 1 remains supported for existing integrations and exposes 130 endpoints across company, merchant, and store configuration. If your integration is greenfield, build against v3; if you already use v1, you can stay on it until you choose to migrate.

What are the rate limits for the Management API?

Adyen applies per-company rate limits typically in the tens of requests per second for management operations on production. Excess requests return HTTP 429 with a retry hint. Bulk audits should batch and back off, and your Adyen account team can raise limits for sustained higher volumes.

How do I list a company's merchant accounts through Jentic?

Search Jentic for 'list Adyen merchant accounts' to find the GET /companies/{companyId}/merchants operation. Pass the companyId in the path and Jentic loads the schema and executes with vaulted credentials. The response is paginated by Adyen so handle the page parameters where the merchant list is large. Run it through Jentic One, the self-hosted execution layer.

Can I create webhook subscriptions through the Management API?

Yes. The Management API exposes webhook subscription endpoints under /companies/{companyId}/webhooks (and the merchant-level equivalent) that create, update, list, and delete subscriptions. The Management Webhooks spec documents the payload format that the resulting subscription delivers to your receiver URL.

Can I limit what my agent is allowed to do with the Adyen Management API?

Yes. Because you run Jentic One self-hosted, your own rules decide which operations and credentials the agent may use, and the Management API v1 puts the companyId in every URL path (/companies/{companyId}/...), so a rule can pin your agent to a single company and its merchants, webhooks, and API credentials. You choose exactly which operations it may call, so sensitive writes like API-key generation and allowed-origin changes stay off unless you explicitly grant them. The encrypted Adyen key is injected only at execution time, so the agent acts within the scope you set without ever seeing the raw credential.

GET STARTED

Start building with Adyen Management API (v1) API

Explore with Jentic One
View OpenAPI Document