Adyen · Capability

Adyen Configuration API — Balance

Adyen Configuration API — Balance. 12 operations. Lead operation: Adyen Get All Balance Accounts of an Account Holder. Self-contained Naftiko capability covering one Adyen business surface.

Run with Naftiko AdyenBalance

What You Can Do

GET
Getaccountholdersidbalanceaccounts — Adyen Get All Balance Accounts of an Account Holder
/v1/accountholders/{id}/balanceaccounts
POST
Postbalanceaccounts — Adyen Create a Balance Account
/v1/balanceaccounts
GET
Getbalanceaccountsbalanceaccountidsweeps — Adyen Get All Sweeps for a Balance Account
/v1/balanceaccounts/{balanceaccountid}/sweeps
POST
Postbalanceaccountsbalanceaccountidsweeps — Adyen Create a Sweep
/v1/balanceaccounts/{balanceaccountid}/sweeps
DELETE
Deletebalanceaccountsbalanceaccountidsweepssweepid — Adyen Delete a Sweep
/v1/balanceaccounts/{balanceaccountid}/sweeps/{sweepid}
GET
Getbalanceaccountsbalanceaccountidsweepssweepid — Adyen Get a Sweep
/v1/balanceaccounts/{balanceaccountid}/sweeps/{sweepid}
PATCH
Patchbalanceaccountsbalanceaccountidsweepssweepid — Adyen Update a Sweep
/v1/balanceaccounts/{balanceaccountid}/sweeps/{sweepid}
GET
Getbalanceaccountsid — Adyen Get a Balance Account
/v1/balanceaccounts/{id}
PATCH
Patchbalanceaccountsid — Adyen Update a Balance Account
/v1/balanceaccounts/{id}
GET
Getbalanceaccountsidpaymentinstruments — Adyen Get Payment Instruments Linked to a Balance Account
/v1/balanceaccounts/{id}/paymentinstruments
GET
Getbalanceplatformsid — Adyen Get a Balance Platform
/v1/balanceplatforms/{id}
GET
Getbalanceplatformsidaccountholders — Adyen Get All Account Holders Under a Balance Platform
/v1/balanceplatforms/{id}/accountholders

MCP Tools

adyen-get-all-balance-accounts

Adyen Get All Balance Accounts of an Account Holder

read-only idempotent
adyen-create-balance-account

Adyen Create a Balance Account

adyen-get-all-sweeps-balance

Adyen Get All Sweeps for a Balance Account

read-only idempotent
adyen-create-sweep

Adyen Create a Sweep

adyen-delete-sweep

Adyen Delete a Sweep

idempotent
adyen-get-sweep

Adyen Get a Sweep

read-only idempotent
adyen-update-sweep

Adyen Update a Sweep

idempotent
adyen-get-balance-account

Adyen Get a Balance Account

read-only idempotent
adyen-update-balance-account

Adyen Update a Balance Account

idempotent
adyen-get-payment-instruments-linked

Adyen Get Payment Instruments Linked to a Balance Account

read-only idempotent
adyen-get-balance-platform

Adyen Get a Balance Platform

read-only idempotent
adyen-get-all-account-holders

Adyen Get All Account Holders Under a Balance Platform

read-only idempotent

Capability Spec

configuration-balance.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adyen Configuration API — Balance
  description: 'Adyen Configuration API — Balance. 12 operations. Lead operation: Adyen Get All Balance Accounts of an Account
    Holder. Self-contained Naftiko capability covering one Adyen business surface.'
  tags:
  - Adyen
  - Balance
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADYEN_API_KEY: ADYEN_API_KEY
capability:
  consumes:
  - type: http
    namespace: configuration-balance
    baseUri: https://balanceplatform-api-test.adyen.com/bcl/v2
    description: Adyen Configuration API — Balance business capability. Self-contained, no shared references.
    resources:
    - name: accountHolders-id-balanceAccounts
      path: /accountHolders/{id}/balanceAccounts
      operations:
      - name: getaccountholdersidbalanceaccounts
        method: GET
        description: Adyen Get All Balance Accounts of an Account Holder
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the account holder.
          required: true
        - name: offset
          in: query
          type: integer
          description: The number of items that you want to skip.
        - name: limit
          in: query
          type: integer
          description: The number of items returned per page, maximum 100 items. By default, the response returns 10 items
            per page.
    - name: balanceAccounts
      path: /balanceAccounts
      operations:
      - name: postbalanceaccounts
        method: POST
        description: Adyen Create a Balance Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: balanceAccounts-balanceAccountId-sweeps
      path: /balanceAccounts/{balanceAccountId}/sweeps
      operations:
      - name: getbalanceaccountsbalanceaccountidsweeps
        method: GET
        description: Adyen Get All Sweeps for a Balance Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: balanceAccountId
          in: path
          type: string
          description: The unique identifier of the balance account.
          required: true
        - name: offset
          in: query
          type: integer
          description: The number of items that you want to skip.
        - name: limit
          in: query
          type: integer
          description: The number of items returned per page, maximum 100 items. By default, the response returns 10 items
            per page.
      - name: postbalanceaccountsbalanceaccountidsweeps
        method: POST
        description: Adyen Create a Sweep
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: balanceAccountId
          in: path
          type: string
          description: The unique identifier of the balance account.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: balanceAccounts-balanceAccountId-sweeps-sweepId
      path: /balanceAccounts/{balanceAccountId}/sweeps/{sweepId}
      operations:
      - name: deletebalanceaccountsbalanceaccountidsweepssweepid
        method: DELETE
        description: Adyen Delete a Sweep
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: balanceAccountId
          in: path
          type: string
          description: The unique identifier of the balance account.
          required: true
        - name: sweepId
          in: path
          type: string
          description: The unique identifier of the sweep.
          required: true
      - name: getbalanceaccountsbalanceaccountidsweepssweepid
        method: GET
        description: Adyen Get a Sweep
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: balanceAccountId
          in: path
          type: string
          description: The unique identifier of the balance account.
          required: true
        - name: sweepId
          in: path
          type: string
          description: The unique identifier of the sweep.
          required: true
      - name: patchbalanceaccountsbalanceaccountidsweepssweepid
        method: PATCH
        description: Adyen Update a Sweep
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: balanceAccountId
          in: path
          type: string
          description: The unique identifier of the balance account.
          required: true
        - name: sweepId
          in: path
          type: string
          description: The unique identifier of the sweep.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: balanceAccounts-id
      path: /balanceAccounts/{id}
      operations:
      - name: getbalanceaccountsid
        method: GET
        description: Adyen Get a Balance Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the balance account.
          required: true
      - name: patchbalanceaccountsid
        method: PATCH
        description: Adyen Update a Balance Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the balance account.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: balanceAccounts-id-paymentInstruments
      path: /balanceAccounts/{id}/paymentInstruments
      operations:
      - name: getbalanceaccountsidpaymentinstruments
        method: GET
        description: Adyen Get Payment Instruments Linked to a Balance Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the balance account.
          required: true
        - name: offset
          in: query
          type: integer
          description: The number of items that you want to skip.
        - name: limit
          in: query
          type: integer
          description: The number of items returned per page, maximum 100 items. By default, the response returns 10 items
            per page.
        - name: status
          in: query
          type: string
          description: The status of the payment instruments that you want to get. By default, the response includes payment
            instruments with any status.
    - name: balancePlatforms-id
      path: /balancePlatforms/{id}
      operations:
      - name: getbalanceplatformsid
        method: GET
        description: Adyen Get a Balance Platform
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the balance platform.
          required: true
    - name: balancePlatforms-id-accountHolders
      path: /balancePlatforms/{id}/accountHolders
      operations:
      - name: getbalanceplatformsidaccountholders
        method: GET
        description: Adyen Get All Account Holders Under a Balance Platform
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the balance platform.
          required: true
        - name: offset
          in: query
          type: integer
          description: The number of items that you want to skip.
        - name: limit
          in: query
          type: integer
          description: The number of items returned per page, maximum 100 items. By default, the response returns 10 items
            per page.
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.ADYEN_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: configuration-balance-rest
    port: 8080
    description: REST adapter for Adyen Configuration API — Balance. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/accountholders/{id}/balanceaccounts
      name: accountholders-id-balanceaccounts
      description: REST surface for accountHolders-id-balanceAccounts.
      operations:
      - method: GET
        name: getaccountholdersidbalanceaccounts
        description: Adyen Get All Balance Accounts of an Account Holder
        call: configuration-balance.getaccountholdersidbalanceaccounts
        with:
          id: rest.id
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/balanceaccounts
      name: balanceaccounts
      description: REST surface for balanceAccounts.
      operations:
      - method: POST
        name: postbalanceaccounts
        description: Adyen Create a Balance Account
        call: configuration-balance.postbalanceaccounts
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/balanceaccounts/{balanceaccountid}/sweeps
      name: balanceaccounts-balanceaccountid-sweeps
      description: REST surface for balanceAccounts-balanceAccountId-sweeps.
      operations:
      - method: GET
        name: getbalanceaccountsbalanceaccountidsweeps
        description: Adyen Get All Sweeps for a Balance Account
        call: configuration-balance.getbalanceaccountsbalanceaccountidsweeps
        with:
          balanceAccountId: rest.balanceAccountId
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postbalanceaccountsbalanceaccountidsweeps
        description: Adyen Create a Sweep
        call: configuration-balance.postbalanceaccountsbalanceaccountidsweeps
        with:
          balanceAccountId: rest.balanceAccountId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/balanceaccounts/{balanceaccountid}/sweeps/{sweepid}
      name: balanceaccounts-balanceaccountid-sweeps-sweepid
      description: REST surface for balanceAccounts-balanceAccountId-sweeps-sweepId.
      operations:
      - method: DELETE
        name: deletebalanceaccountsbalanceaccountidsweepssweepid
        description: Adyen Delete a Sweep
        call: configuration-balance.deletebalanceaccountsbalanceaccountidsweepssweepid
        with:
          balanceAccountId: rest.balanceAccountId
          sweepId: rest.sweepId
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getbalanceaccountsbalanceaccountidsweepssweepid
        description: Adyen Get a Sweep
        call: configuration-balance.getbalanceaccountsbalanceaccountidsweepssweepid
        with:
          balanceAccountId: rest.balanceAccountId
          sweepId: rest.sweepId
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchbalanceaccountsbalanceaccountidsweepssweepid
        description: Adyen Update a Sweep
        call: configuration-balance.patchbalanceaccountsbalanceaccountidsweepssweepid
        with:
          balanceAccountId: rest.balanceAccountId
          sweepId: rest.sweepId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/balanceaccounts/{id}
      name: balanceaccounts-id
      description: REST surface for balanceAccounts-id.
      operations:
      - method: GET
        name: getbalanceaccountsid
        description: Adyen Get a Balance Account
        call: configuration-balance.getbalanceaccountsid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchbalanceaccountsid
        description: Adyen Update a Balance Account
        call: configuration-balance.patchbalanceaccountsid
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/balanceaccounts/{id}/paymentinstruments
      name: balanceaccounts-id-paymentinstruments
      description: REST surface for balanceAccounts-id-paymentInstruments.
      operations:
      - method: GET
        name: getbalanceaccountsidpaymentinstruments
        description: Adyen Get Payment Instruments Linked to a Balance Account
        call: configuration-balance.getbalanceaccountsidpaymentinstruments
        with:
          id: rest.id
          offset: rest.offset
          limit: rest.limit
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/balanceplatforms/{id}
      name: balanceplatforms-id
      description: REST surface for balancePlatforms-id.
      operations:
      - method: GET
        name: getbalanceplatformsid
        description: Adyen Get a Balance Platform
        call: configuration-balance.getbalanceplatformsid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/balanceplatforms/{id}/accountholders
      name: balanceplatforms-id-accountholders
      description: REST surface for balancePlatforms-id-accountHolders.
      operations:
      - method: GET
        name: getbalanceplatformsidaccountholders
        description: Adyen Get All Account Holders Under a Balance Platform
        call: configuration-balance.getbalanceplatformsidaccountholders
        with:
          id: rest.id
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: configuration-balance-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adyen Configuration API — Balance. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: adyen-get-all-balance-accounts
      description: Adyen Get All Balance Accounts of an Account Holder
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-balance.getaccountholdersidbalanceaccounts
      with:
        id: tools.id
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-create-balance-account
      description: Adyen Create a Balance Account
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: configuration-balance.postbalanceaccounts
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-get-all-sweeps-balance
      description: Adyen Get All Sweeps for a Balance Account
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-balance.getbalanceaccountsbalanceaccountidsweeps
      with:
        balanceAccountId: tools.balanceAccountId
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-create-sweep
      description: Adyen Create a Sweep
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: configuration-balance.postbalanceaccountsbalanceaccountidsweeps
      with:
        balanceAccountId: tools.balanceAccountId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-delete-sweep
      description: Adyen Delete a Sweep
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: configuration-balance.deletebalanceaccountsbalanceaccountidsweepssweepid
      with:
        balanceAccountId: tools.balanceAccountId
        sweepId: tools.sweepId
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-get-sweep
      description: Adyen Get a Sweep
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-balance.getbalanceaccountsbalanceaccountidsweepssweepid
      with:
        balanceAccountId: tools.balanceAccountId
        sweepId: tools.sweepId
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-update-sweep
      description: Adyen Update a Sweep
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: configuration-balance.patchbalanceaccountsbalanceaccountidsweepssweepid
      with:
        balanceAccountId: tools.balanceAccountId
        sweepId: tools.sweepId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-get-balance-account
      description: Adyen Get a Balance Account
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-balance.getbalanceaccountsid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-update-balance-account
      description: Adyen Update a Balance Account
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: configuration-balance.patchbalanceaccountsid
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-get-payment-instruments-linked
      description: Adyen Get Payment Instruments Linked to a Balance Account
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-balance.getbalanceaccountsidpaymentinstruments
      with:
        id: tools.id
        offset: tools.offset
        limit: tools.limit
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-get-balance-platform
      description: Adyen Get a Balance Platform
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-balance.getbalanceplatformsid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-get-all-account-holders
      description: Adyen Get All Account Holders Under a Balance Platform
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-balance.getbalanceplatformsidaccountholders
      with:
        id: tools.id
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.