Adyen · Capability

Adyen Transfers API — Transfers

Adyen Transfers API — Transfers. 2 operations. Lead operation: Adyen Transfer Funds. Self-contained Naftiko capability covering one Adyen business surface.

Run with Naftiko AdyenTransfers

What You Can Do

POST
Posttransfers — Adyen Transfer Funds
/v1/transfers
POST
Posttransferstransferidreturns — Adyen Return a Transfer
/v1/transfers/{transferid}/returns

MCP Tools

adyen-transfer-funds

Adyen Transfer Funds

adyen-return-transfer

Adyen Return a Transfer

Capability Spec

transfers-transfers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adyen Transfers API — Transfers
  description: 'Adyen Transfers API — Transfers. 2 operations. Lead operation: Adyen Transfer Funds. Self-contained Naftiko
    capability covering one Adyen business surface.'
  tags:
  - Adyen
  - Transfers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADYEN_API_KEY: ADYEN_API_KEY
capability:
  consumes:
  - type: http
    namespace: transfers-transfers
    baseUri: https://balanceplatform-api-test.adyen.com/btl/v4
    description: Adyen Transfers API — Transfers business capability. Self-contained, no shared references.
    resources:
    - name: transfers
      path: /transfers
      operations:
      - name: posttransfers
        method: POST
        description: Adyen Transfer Funds
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: WWW-Authenticate
          in: header
          type: string
          description: Header for authenticating through SCA
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: transfers-transferId-returns
      path: /transfers/{transferId}/returns
      operations:
      - name: posttransferstransferidreturns
        method: POST
        description: Adyen Return a Transfer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: transferId
          in: path
          type: string
          description: The unique identifier of the transfer to be returned.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.ADYEN_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: transfers-transfers-rest
    port: 8080
    description: REST adapter for Adyen Transfers API — Transfers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/transfers
      name: transfers
      description: REST surface for transfers.
      operations:
      - method: POST
        name: posttransfers
        description: Adyen Transfer Funds
        call: transfers-transfers.posttransfers
        with:
          WWW-Authenticate: rest.WWW-Authenticate
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/transfers/{transferid}/returns
      name: transfers-transferid-returns
      description: REST surface for transfers-transferId-returns.
      operations:
      - method: POST
        name: posttransferstransferidreturns
        description: Adyen Return a Transfer
        call: transfers-transfers.posttransferstransferidreturns
        with:
          transferId: rest.transferId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: transfers-transfers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adyen Transfers API — Transfers. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: adyen-transfer-funds
      description: Adyen Transfer Funds
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transfers-transfers.posttransfers
      with:
        WWW-Authenticate: tools.WWW-Authenticate
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-return-transfer
      description: Adyen Return a Transfer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transfers-transfers.posttransferstransferidreturns
      with:
        transferId: tools.transferId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.