Adyen source
Overview
The Adyen source connector lets you connect to Adyen using an API key and validate access to your Adyen account.
This connector is currently in development. Authentication (credential validation) is supported, but data extraction and streams are not yet available.
Setup
Prerequisites
- An Adyen account
- An Adyen API key with access to the Management API
Create an API key in Adyen
In the Adyen Customer Area:
- Go to Developers → API credentials
- Create or select an API credential
- Generate an API key
- Store the key securely (you will use it as
api_key)
Authentication
This connector authenticates using an Adyen API key sent via the X-API-Key header.
During connection testing/login, the connector calls:
GET https://management-{environment}.adyen.com/v3/me
If the request succeeds, credentials are considered valid.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
api_key | string | ✅ | Adyen API key used to authenticate requests (X-API-Key). |
environment | string | ✅ | Adyen environment to connect to. Must be one of: test, live. |
Streams
No streams are currently exposed.
- Catalog discovery currently returns an empty catalog.
- Extraction currently fails with:
Adyen extraction is still in development.
Troubleshooting
- Credential validation failed
- Confirm the API key is correct and active.
- Ensure the API credential has access to the Management API.
- Verify
environmentis set totestorliveand matches where the API key is valid.