Wise · Capability

Wise Platform API — card-kiosk-collection

Wise Platform API — card-kiosk-collection. 2 operations. Lead operation: Produce a card. Self-contained Naftiko capability covering one Wise business surface.

Run with Naftiko Wisecard-kiosk-collection

What You Can Do

PUT
Cardkioskcollectionproduce — Produce a card
/v1/v3/spend/profiles/{profileid}/cards/{cardtoken}/production
GET
Cardkioskcollectionproductionget — Retrieve card production status
/v1/v3/spend/profiles/{profileid}/cards/{cardtoken}/production

MCP Tools

produce-card

Produce a card

idempotent
retrieve-card-production-status

Retrieve card production status

read-only idempotent

Capability Spec

platform-card-kiosk-collection.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Wise Platform API — card-kiosk-collection
  description: 'Wise Platform API — card-kiosk-collection. 2 operations. Lead operation: Produce a card. Self-contained Naftiko
    capability covering one Wise business surface.'
  tags:
  - Wise
  - card-kiosk-collection
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WISE_API_KEY: WISE_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-card-kiosk-collection
    baseUri: https://api.wise.com
    description: Wise Platform API — card-kiosk-collection business capability. Self-contained, no shared references.
    resources:
    - name: v3-spend-profiles-profileId-cards-cardToken-production
      path: /v3/spend/profiles/{profileId}/cards/{cardToken}/production
      operations:
      - name: cardkioskcollectionproduce
        method: PUT
        description: Produce a card
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: profileId
          in: path
          type: integer
          description: The profile ID (personal or business) that owns the card.
          required: true
        - name: cardToken
          in: path
          type: string
          description: The unique token identifying the card.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: cardkioskcollectionproductionget
        method: GET
        description: Retrieve card production status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: profileId
          in: path
          type: integer
          description: The profile ID (personal or business) that owns the card.
          required: true
        - name: cardToken
          in: path
          type: string
          description: The unique token identifying the card.
          required: true
    authentication:
      type: bearer
      token: '{{env.WISE_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-card-kiosk-collection-rest
    port: 8080
    description: REST adapter for Wise Platform API — card-kiosk-collection. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v3/spend/profiles/{profileid}/cards/{cardtoken}/production
      name: v3-spend-profiles-profileid-cards-cardtoken-production
      description: REST surface for v3-spend-profiles-profileId-cards-cardToken-production.
      operations:
      - method: PUT
        name: cardkioskcollectionproduce
        description: Produce a card
        call: platform-card-kiosk-collection.cardkioskcollectionproduce
        with:
          profileId: rest.profileId
          cardToken: rest.cardToken
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: cardkioskcollectionproductionget
        description: Retrieve card production status
        call: platform-card-kiosk-collection.cardkioskcollectionproductionget
        with:
          profileId: rest.profileId
          cardToken: rest.cardToken
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-card-kiosk-collection-mcp
    port: 9090
    transport: http
    description: MCP adapter for Wise Platform API — card-kiosk-collection. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: produce-card
      description: Produce a card
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: platform-card-kiosk-collection.cardkioskcollectionproduce
      with:
        profileId: tools.profileId
        cardToken: tools.cardToken
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-card-production-status
      description: Retrieve card production status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-card-kiosk-collection.cardkioskcollectionproductionget
      with:
        profileId: tools.profileId
        cardToken: tools.cardToken
      outputParameters:
      - type: object
        mapping: $.