Finout · Capability

Finout API — Virtual Tags

Finout API — Virtual Tags. 5 operations. Lead operation: Finout Get all virtual tags. Self-contained Naftiko capability covering one Finout business surface.

Run with Naftiko FinoutVirtual Tags

What You Can Do

GET
Listvirtualtags — Finout Get all virtual tags
/v1/virtual-tag
POST
Createvirtualtag — Finout Create a virtual tag
/v1/virtual-tag
PUT
Updatevirtualtag — Finout Update a virtual tag
/v1/virtual-tag
GET
Getvirtualtagbyid — Finout Get a virtual tag by ID
/v1/virtual-tag/{id}
DELETE
Deletevirtualtag — Finout Delete a virtual tag
/v1/virtual-tag/{id}

MCP Tools

finout-get-all-virtual-tags

Finout Get all virtual tags

read-only idempotent
finout-create-virtual-tag

Finout Create a virtual tag

finout-update-virtual-tag

Finout Update a virtual tag

idempotent
finout-get-virtual-tag-id

Finout Get a virtual tag by ID

read-only idempotent
finout-delete-virtual-tag

Finout Delete a virtual tag

idempotent

Capability Spec

finout-virtual-tags.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Finout API — Virtual Tags
  description: 'Finout API — Virtual Tags. 5 operations. Lead operation: Finout Get all virtual tags. Self-contained Naftiko
    capability covering one Finout business surface.'
  tags:
  - Finout
  - Virtual Tags
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FINOUT_API_KEY: FINOUT_API_KEY
capability:
  consumes:
  - type: http
    namespace: finout-virtual-tags
    baseUri: https://app.finout.io/v1
    description: Finout API — Virtual Tags business capability. Self-contained, no shared references.
    resources:
    - name: virtual-tag
      path: /virtual-tag
      operations:
      - name: listvirtualtags
        method: GET
        description: Finout Get all virtual tags
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createvirtualtag
        method: POST
        description: Finout Create a virtual tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updatevirtualtag
        method: PUT
        description: Finout Update a virtual tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: virtual-tag-id
      path: /virtual-tag/{id}
      operations:
      - name: getvirtualtagbyid
        method: GET
        description: Finout Get a virtual tag by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the virtual tag.
          required: true
      - name: deletevirtualtag
        method: DELETE
        description: Finout Delete a virtual tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the virtual tag to delete.
          required: true
    authentication:
      type: apikey
      key: x-finout-client-id
      value: '{{env.FINOUT_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: finout-virtual-tags-rest
    port: 8080
    description: REST adapter for Finout API — Virtual Tags. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/virtual-tag
      name: virtual-tag
      description: REST surface for virtual-tag.
      operations:
      - method: GET
        name: listvirtualtags
        description: Finout Get all virtual tags
        call: finout-virtual-tags.listvirtualtags
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createvirtualtag
        description: Finout Create a virtual tag
        call: finout-virtual-tags.createvirtualtag
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatevirtualtag
        description: Finout Update a virtual tag
        call: finout-virtual-tags.updatevirtualtag
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/virtual-tag/{id}
      name: virtual-tag-id
      description: REST surface for virtual-tag-id.
      operations:
      - method: GET
        name: getvirtualtagbyid
        description: Finout Get a virtual tag by ID
        call: finout-virtual-tags.getvirtualtagbyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletevirtualtag
        description: Finout Delete a virtual tag
        call: finout-virtual-tags.deletevirtualtag
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: finout-virtual-tags-mcp
    port: 9090
    transport: http
    description: MCP adapter for Finout API — Virtual Tags. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: finout-get-all-virtual-tags
      description: Finout Get all virtual tags
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: finout-virtual-tags.listvirtualtags
      outputParameters:
      - type: object
        mapping: $.
    - name: finout-create-virtual-tag
      description: Finout Create a virtual tag
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: finout-virtual-tags.createvirtualtag
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: finout-update-virtual-tag
      description: Finout Update a virtual tag
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: finout-virtual-tags.updatevirtualtag
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: finout-get-virtual-tag-id
      description: Finout Get a virtual tag by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: finout-virtual-tags.getvirtualtagbyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: finout-delete-virtual-tag
      description: Finout Delete a virtual tag
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: finout-virtual-tags.deletevirtualtag
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.