Vibes Platform · Capability

Vibes Platform API — Wallet Passes

Vibes Platform API — Wallet Passes. 2 operations. Lead operation: List Wallet Items. Self-contained Naftiko capability covering one Vibes Platform business surface.

Run with Naftiko Vibes PlatformWallet Passes

What You Can Do

GET
Listwalletitems — List Wallet Items
/v1/companies/{company-key}/wallet-items
POST
Createwalletitem — Create Wallet Item
/v1/companies/{company-key}/wallet-items

MCP Tools

list-wallet-items

List Wallet Items

read-only idempotent
create-wallet-item

Create Wallet Item

Capability Spec

vibes-platform-wallet-passes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Vibes Platform API — Wallet Passes
  description: 'Vibes Platform API — Wallet Passes. 2 operations. Lead operation: List Wallet Items. Self-contained Naftiko
    capability covering one Vibes Platform business surface.'
  tags:
  - Vibes Platform
  - Wallet Passes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VIBES_PLATFORM_API_KEY: VIBES_PLATFORM_API_KEY
capability:
  consumes:
  - type: http
    namespace: vibes-platform-wallet-passes
    baseUri: https://public-api.vibescm.com
    description: Vibes Platform API — Wallet Passes business capability. Self-contained, no shared references.
    resources:
    - name: companies-company_key-wallet_items
      path: /companies/{company_key}/wallet_items
      operations:
      - name: listwalletitems
        method: GET
        description: List Wallet Items
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createwalletitem
        method: POST
        description: Create Wallet Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.VIBES_PLATFORM_USER}}'
      password: '{{env.VIBES_PLATFORM_PASS}}'
  exposes:
  - type: rest
    namespace: vibes-platform-wallet-passes-rest
    port: 8080
    description: REST adapter for Vibes Platform API — Wallet Passes. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/companies/{company-key}/wallet-items
      name: companies-company-key-wallet-items
      description: REST surface for companies-company_key-wallet_items.
      operations:
      - method: GET
        name: listwalletitems
        description: List Wallet Items
        call: vibes-platform-wallet-passes.listwalletitems
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createwalletitem
        description: Create Wallet Item
        call: vibes-platform-wallet-passes.createwalletitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vibes-platform-wallet-passes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Vibes Platform API — Wallet Passes. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-wallet-items
      description: List Wallet Items
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vibes-platform-wallet-passes.listwalletitems
      outputParameters:
      - type: object
        mapping: $.
    - name: create-wallet-item
      description: Create Wallet Item
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: vibes-platform-wallet-passes.createwalletitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.