Tillo · Capability

Tillo Gift Card API — Float

Tillo Gift Card API — Float. 3 operations. Lead operation: Get Float Balance. Self-contained Naftiko capability covering one Tillo business surface.

Run with Naftiko TilloFloat

What You Can Do

GET
Getfloatbalance — Get Float Balance
/v1/float
POST
Requestpaymenttransfer — Request Payment Transfer
/v1/float/request-payment-transfer
GET
Listtransferrequests — List Transfer Requests
/v1/float/transfer-requests

MCP Tools

get-float-balance

Get Float Balance

read-only idempotent
request-payment-transfer

Request Payment Transfer

list-transfer-requests

List Transfer Requests

read-only idempotent

Capability Spec

gift-card-float.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tillo Gift Card API — Float
  description: 'Tillo Gift Card API — Float. 3 operations. Lead operation: Get Float Balance. Self-contained Naftiko capability
    covering one Tillo business surface.'
  tags:
  - Tillo
  - Float
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TILLO_API_KEY: TILLO_API_KEY
capability:
  consumes:
  - type: http
    namespace: gift-card-float
    baseUri: https://app.tillo.io/api/v2
    description: Tillo Gift Card API — Float business capability. Self-contained, no shared references.
    resources:
    - name: float
      path: /float
      operations:
      - name: getfloatbalance
        method: GET
        description: Get Float Balance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: float-request-payment-transfer
      path: /float/request-payment-transfer
      operations:
      - name: requestpaymenttransfer
        method: POST
        description: Request Payment Transfer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: float-transfer-requests
      path: /float/transfer-requests
      operations:
      - name: listtransferrequests
        method: GET
        description: List Transfer Requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.TILLO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: gift-card-float-rest
    port: 8080
    description: REST adapter for Tillo Gift Card API — Float. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/float
      name: float
      description: REST surface for float.
      operations:
      - method: GET
        name: getfloatbalance
        description: Get Float Balance
        call: gift-card-float.getfloatbalance
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/float/request-payment-transfer
      name: float-request-payment-transfer
      description: REST surface for float-request-payment-transfer.
      operations:
      - method: POST
        name: requestpaymenttransfer
        description: Request Payment Transfer
        call: gift-card-float.requestpaymenttransfer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/float/transfer-requests
      name: float-transfer-requests
      description: REST surface for float-transfer-requests.
      operations:
      - method: GET
        name: listtransferrequests
        description: List Transfer Requests
        call: gift-card-float.listtransferrequests
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gift-card-float-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tillo Gift Card API — Float. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-float-balance
      description: Get Float Balance
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gift-card-float.getfloatbalance
      outputParameters:
      - type: object
        mapping: $.
    - name: request-payment-transfer
      description: Request Payment Transfer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: gift-card-float.requestpaymenttransfer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-transfer-requests
      description: List Transfer Requests
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gift-card-float.listtransferrequests
      outputParameters:
      - type: object
        mapping: $.