Bunq · Capability

Bunq user/{userID}/monetary-account-savings — User

Bunq user/{userID}/monetary-account-savings — User. 4 operations. Lead operation: User. Self-contained Naftiko capability covering one Bunq business surface.

Run with Naftiko BunqUser

What You Can Do

POST
Createmonetaryaccountsavingsforuser — Create new MonetaryAccountSavings.
/v1/user/{userid}/monetary-account-savings
GET
Listallmonetaryaccountsavingsforuser — Gets a listing of all MonetaryAccountSavingss of a given user.
/v1/user/{userid}/monetary-account-savings
GET
Readmonetaryaccountsavingsforuser — Get a specific MonetaryAccountSavings.
/v1/user/{userid}/monetary-account-savings/{itemid}
PUT
Updatemonetaryaccountsavingsforuser — Update a specific existing MonetaryAccountSavings.
/v1/user/{userid}/monetary-account-savings/{itemid}

MCP Tools

create-new-monetaryaccountsavings

Create new MonetaryAccountSavings.

gets-listing-all-monetaryaccountsavingss-given

Gets a listing of all MonetaryAccountSavingss of a given user.

read-only idempotent
get-specific-monetaryaccountsavings

Get a specific MonetaryAccountSavings.

read-only idempotent
update-specific-existing-monetaryaccountsavings

Update a specific existing MonetaryAccountSavings.

idempotent

Capability Spec

user-userid-monetary-account-savings-user.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bunq user/{userID}/monetary-account-savings — User
  description: 'Bunq user/{userID}/monetary-account-savings — User. 4 operations. Lead operation: User. Self-contained Naftiko
    capability covering one Bunq business surface.'
  tags:
  - Bunq
  - User
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BUNQ_API_KEY: BUNQ_API_KEY
capability:
  consumes:
  - type: http
    namespace: user-userid-monetary-account-savings-user
    baseUri: https://public-api.sandbox.bunq.com/{basePath}
    description: Bunq user/{userID}/monetary-account-savings — User business capability. Self-contained, no shared references.
    resources:
    - name: user-userID-monetary-account-savings
      path: /user/{userID}/monetary-account-savings
      operations:
      - name: createmonetaryaccountsavingsforuser
        method: POST
        description: Create new MonetaryAccountSavings.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userID
          in: path
          type: integer
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listallmonetaryaccountsavingsforuser
        method: GET
        description: Gets a listing of all MonetaryAccountSavingss of a given user.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userID
          in: path
          type: integer
          required: true
    - name: user-userID-monetary-account-savings-itemId
      path: /user/{userID}/monetary-account-savings/{itemId}
      operations:
      - name: readmonetaryaccountsavingsforuser
        method: GET
        description: Get a specific MonetaryAccountSavings.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userID
          in: path
          type: integer
          required: true
        - name: itemId
          in: path
          type: integer
          required: true
      - name: updatemonetaryaccountsavingsforuser
        method: PUT
        description: Update a specific existing MonetaryAccountSavings.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userID
          in: path
          type: integer
          required: true
        - name: itemId
          in: path
          type: integer
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: user-userid-monetary-account-savings-user-rest
    port: 8080
    description: REST adapter for Bunq user/{userID}/monetary-account-savings — User. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/user/{userid}/monetary-account-savings
      name: user-userid-monetary-account-savings
      description: REST surface for user-userID-monetary-account-savings.
      operations:
      - method: POST
        name: createmonetaryaccountsavingsforuser
        description: Create new MonetaryAccountSavings.
        call: user-userid-monetary-account-savings-user.createmonetaryaccountsavingsforuser
        with:
          userID: rest.userID
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listallmonetaryaccountsavingsforuser
        description: Gets a listing of all MonetaryAccountSavingss of a given user.
        call: user-userid-monetary-account-savings-user.listallmonetaryaccountsavingsforuser
        with:
          userID: rest.userID
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/user/{userid}/monetary-account-savings/{itemid}
      name: user-userid-monetary-account-savings-itemid
      description: REST surface for user-userID-monetary-account-savings-itemId.
      operations:
      - method: GET
        name: readmonetaryaccountsavingsforuser
        description: Get a specific MonetaryAccountSavings.
        call: user-userid-monetary-account-savings-user.readmonetaryaccountsavingsforuser
        with:
          userID: rest.userID
          itemId: rest.itemId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatemonetaryaccountsavingsforuser
        description: Update a specific existing MonetaryAccountSavings.
        call: user-userid-monetary-account-savings-user.updatemonetaryaccountsavingsforuser
        with:
          userID: rest.userID
          itemId: rest.itemId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: user-userid-monetary-account-savings-user-mcp
    port: 9090
    transport: http
    description: MCP adapter for Bunq user/{userID}/monetary-account-savings — User. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: create-new-monetaryaccountsavings
      description: Create new MonetaryAccountSavings.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: user-userid-monetary-account-savings-user.createmonetaryaccountsavingsforuser
      with:
        userID: tools.userID
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: gets-listing-all-monetaryaccountsavingss-given
      description: Gets a listing of all MonetaryAccountSavingss of a given user.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: user-userid-monetary-account-savings-user.listallmonetaryaccountsavingsforuser
      with:
        userID: tools.userID
      outputParameters:
      - type: object
        mapping: $.
    - name: get-specific-monetaryaccountsavings
      description: Get a specific MonetaryAccountSavings.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: user-userid-monetary-account-savings-user.readmonetaryaccountsavingsforuser
      with:
        userID: tools.userID
        itemId: tools.itemId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-specific-existing-monetaryaccountsavings
      description: Update a specific existing MonetaryAccountSavings.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: user-userid-monetary-account-savings-user.updatemonetaryaccountsavingsforuser
      with:
        userID: tools.userID
        itemId: tools.itemId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.