Nomba · Capability

Nomba Online Checkout API — Tokenized Cards

Nomba Online Checkout API — Tokenized Cards. 2 operations. Lead operation: List tokenized cards. Self-contained Naftiko capability covering one Nomba business surface.

Run with Naftiko NombaTokenized Cards

What You Can Do

GET
Listtokenizedcards — List tokenized cards
/v1/v1/checkout/tokenized-card-data
POST
Chargetokenizedcard — Charge a customer using tokenized card data
/v1/v1/checkout/tokenized-card-payment

MCP Tools

list-tokenized-cards

List tokenized cards

read-only idempotent
charge-customer-using-tokenized-card

Charge a customer using tokenized card data

Capability Spec

online-checkout-tokenized-cards.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nomba Online Checkout API — Tokenized Cards
  description: 'Nomba Online Checkout API — Tokenized Cards. 2 operations. Lead operation: List tokenized cards. Self-contained
    Naftiko capability covering one Nomba business surface.'
  tags:
  - Nomba
  - Tokenized Cards
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NOMBA_API_KEY: NOMBA_API_KEY
capability:
  consumes:
  - type: http
    namespace: online-checkout-tokenized-cards
    baseUri: https://api.nomba.com
    description: Nomba Online Checkout API — Tokenized Cards business capability. Self-contained, no shared references.
    resources:
    - name: v1-checkout-tokenized-card-data
      path: /v1/checkout/tokenized-card-data
      operations:
      - name: listtokenizedcards
        method: GET
        description: List tokenized cards
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-checkout-tokenized-card-payment
      path: /v1/checkout/tokenized-card-payment
      operations:
      - name: chargetokenizedcard
        method: POST
        description: Charge a customer using tokenized card data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.NOMBA_API_KEY}}'
  exposes:
  - type: rest
    namespace: online-checkout-tokenized-cards-rest
    port: 8080
    description: REST adapter for Nomba Online Checkout API — Tokenized Cards. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v1/checkout/tokenized-card-data
      name: v1-checkout-tokenized-card-data
      description: REST surface for v1-checkout-tokenized-card-data.
      operations:
      - method: GET
        name: listtokenizedcards
        description: List tokenized cards
        call: online-checkout-tokenized-cards.listtokenizedcards
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/checkout/tokenized-card-payment
      name: v1-checkout-tokenized-card-payment
      description: REST surface for v1-checkout-tokenized-card-payment.
      operations:
      - method: POST
        name: chargetokenizedcard
        description: Charge a customer using tokenized card data
        call: online-checkout-tokenized-cards.chargetokenizedcard
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: online-checkout-tokenized-cards-mcp
    port: 9090
    transport: http
    description: MCP adapter for Nomba Online Checkout API — Tokenized Cards. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-tokenized-cards
      description: List tokenized cards
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: online-checkout-tokenized-cards.listtokenizedcards
      outputParameters:
      - type: object
        mapping: $.
    - name: charge-customer-using-tokenized-card
      description: Charge a customer using tokenized card data
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: online-checkout-tokenized-cards.chargetokenizedcard
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.