Bunq · Capability

bunq API — User Person

bunq API — User Person. 2 operations. Lead operation: User Person. Self-contained Naftiko capability covering one Bunq business surface.

Run with Naftiko BunqUser Person

What You Can Do

GET
Readuserperson — Get a specific person.
/v1/user-person/{itemid}
PUT
Updateuserperson — Modify a specific person object's data.
/v1/user-person/{itemid}

MCP Tools

get-specific-person

Get a specific person.

read-only idempotent
modify-specific-person-object-s-data

Modify a specific person object's data.

idempotent

Capability Spec

bunq-user-person.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: bunq API — User Person
  description: 'bunq API — User Person. 2 operations. Lead operation: User Person. Self-contained Naftiko capability covering
    one Bunq business surface.'
  tags:
  - Bunq
  - User Person
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BUNQ_API_KEY: BUNQ_API_KEY
capability:
  consumes:
  - type: http
    namespace: bunq-user-person
    baseUri: https://public-api.sandbox.bunq.com/{basePath}
    description: bunq API — User Person business capability. Self-contained, no shared references.
    resources:
    - name: user-person-itemId
      path: /user-person/{itemId}
      operations:
      - name: readuserperson
        method: GET
        description: Get a specific person.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: itemId
          in: path
          type: integer
          required: true
      - name: updateuserperson
        method: PUT
        description: Modify a specific person object's data.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: itemId
          in: path
          type: integer
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: bunq-user-person-rest
    port: 8080
    description: REST adapter for bunq API — User Person. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/user-person/{itemid}
      name: user-person-itemid
      description: REST surface for user-person-itemId.
      operations:
      - method: GET
        name: readuserperson
        description: Get a specific person.
        call: bunq-user-person.readuserperson
        with:
          itemId: rest.itemId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateuserperson
        description: Modify a specific person object's data.
        call: bunq-user-person.updateuserperson
        with:
          itemId: rest.itemId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bunq-user-person-mcp
    port: 9090
    transport: http
    description: MCP adapter for bunq API — User Person. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-specific-person
      description: Get a specific person.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bunq-user-person.readuserperson
      with:
        itemId: tools.itemId
      outputParameters:
      - type: object
        mapping: $.
    - name: modify-specific-person-object-s-data
      description: Modify a specific person object's data.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: bunq-user-person.updateuserperson
      with:
        itemId: tools.itemId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.