Bunq · Capability

bunq API — User Company

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

Run with Naftiko BunqUser Company

What You Can Do

GET
Readusercompany — Get a specific company.
/v1/user-company/{itemid}
PUT
Updateusercompany — Modify a specific company's data.
/v1/user-company/{itemid}
GET
Listallnameforusercompany — Return all the known (trade) names for a specific user company.
/v1/user-company/{user-companyid}/name

MCP Tools

get-specific-company

Get a specific company.

read-only idempotent
modify-specific-company-s-data

Modify a specific company's data.

idempotent
return-all-known-trade-names

Return all the known (trade) names for a specific user company.

read-only idempotent

Capability Spec

bunq-user-company.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: bunq API — User Company
  description: 'bunq API — User Company. 3 operations. Lead operation: User Company. Self-contained Naftiko capability covering
    one Bunq business surface.'
  tags:
  - Bunq
  - User Company
  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-company
    baseUri: https://public-api.sandbox.bunq.com/{basePath}
    description: bunq API — User Company business capability. Self-contained, no shared references.
    resources:
    - name: user-company-itemId
      path: /user-company/{itemId}
      operations:
      - name: readusercompany
        method: GET
        description: Get a specific company.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: itemId
          in: path
          type: integer
          required: true
      - name: updateusercompany
        method: PUT
        description: Modify a specific company'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
    - name: user-company-user-companyID-name
      path: /user-company/{user-companyID}/name
      operations:
      - name: listallnameforusercompany
        method: GET
        description: Return all the known (trade) names for a specific user company.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: user-companyID
          in: path
          type: integer
          required: true
  exposes:
  - type: rest
    namespace: bunq-user-company-rest
    port: 8080
    description: REST adapter for bunq API — User Company. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/user-company/{itemid}
      name: user-company-itemid
      description: REST surface for user-company-itemId.
      operations:
      - method: GET
        name: readusercompany
        description: Get a specific company.
        call: bunq-user-company.readusercompany
        with:
          itemId: rest.itemId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateusercompany
        description: Modify a specific company's data.
        call: bunq-user-company.updateusercompany
        with:
          itemId: rest.itemId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/user-company/{user-companyid}/name
      name: user-company-user-companyid-name
      description: REST surface for user-company-user-companyID-name.
      operations:
      - method: GET
        name: listallnameforusercompany
        description: Return all the known (trade) names for a specific user company.
        call: bunq-user-company.listallnameforusercompany
        with:
          user-companyID: rest.user-companyID
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bunq-user-company-mcp
    port: 9090
    transport: http
    description: MCP adapter for bunq API — User Company. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-specific-company
      description: Get a specific company.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bunq-user-company.readusercompany
      with:
        itemId: tools.itemId
      outputParameters:
      - type: object
        mapping: $.
    - name: modify-specific-company-s-data
      description: Modify a specific company's data.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: bunq-user-company.updateusercompany
      with:
        itemId: tools.itemId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: return-all-known-trade-names
      description: Return all the known (trade) names for a specific user company.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bunq-user-company.listallnameforusercompany
      with:
        user-companyID: tools.user-companyID
      outputParameters:
      - type: object
        mapping: $.