Adyen · Capability

Adyen Configuration API — Sweep

Adyen Configuration API — Sweep. 3 operations. Lead operation: Adyen Delete a Sweep. Self-contained Naftiko capability covering one Adyen business surface.

Run with Naftiko AdyenSweep

What You Can Do

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}

MCP Tools

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

Capability Spec

configuration-sweep.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adyen Configuration API — Sweep
  description: 'Adyen Configuration API — Sweep. 3 operations. Lead operation: Adyen Delete a Sweep. Self-contained Naftiko
    capability covering one Adyen business surface.'
  tags:
  - Adyen
  - Sweep
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADYEN_API_KEY: ADYEN_API_KEY
capability:
  consumes:
  - type: http
    namespace: configuration-sweep
    baseUri: https://balanceplatform-api-test.adyen.com/bcl/v2
    description: Adyen Configuration API — Sweep business capability. Self-contained, no shared references.
    resources:
    - 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
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.ADYEN_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: configuration-sweep-rest
    port: 8080
    description: REST adapter for Adyen Configuration API — Sweep. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - 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-sweep.deletebalanceaccountsbalanceaccountidsweepssweepid
        with:
          balanceAccountId: rest.balanceAccountId
          sweepId: rest.sweepId
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getbalanceaccountsbalanceaccountidsweepssweepid
        description: Adyen Get a Sweep
        call: configuration-sweep.getbalanceaccountsbalanceaccountidsweepssweepid
        with:
          balanceAccountId: rest.balanceAccountId
          sweepId: rest.sweepId
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchbalanceaccountsbalanceaccountidsweepssweepid
        description: Adyen Update a Sweep
        call: configuration-sweep.patchbalanceaccountsbalanceaccountidsweepssweepid
        with:
          balanceAccountId: rest.balanceAccountId
          sweepId: rest.sweepId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: configuration-sweep-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adyen Configuration API — Sweep. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: adyen-delete-sweep
      description: Adyen Delete a Sweep
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: configuration-sweep.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-sweep.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-sweep.patchbalanceaccountsbalanceaccountidsweepssweepid
      with:
        balanceAccountId: tools.balanceAccountId
        sweepId: tools.sweepId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.