Temenos Transact · Capability

Temenos Transact Core Banking API — Cards

Temenos Transact Core Banking API — Cards. 2 operations. Lead operation: Temenos Transact List Cards. Self-contained Naftiko capability covering one Temenos Transact business surface.

Run with Naftiko Temenos TransactCards

What You Can Do

GET
Getcards — Temenos Transact List Cards
/v1/holdings/cards
GET
Getcard — Temenos Transact Get Card Details
/v1/holdings/cards/{cardid}

MCP Tools

temenos-transact-list-cards

Temenos Transact List Cards

read-only idempotent
temenos-transact-get-card-details

Temenos Transact Get Card Details

read-only idempotent

Capability Spec

core-banking-cards.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Transact Core Banking API — Cards
  description: 'Temenos Transact Core Banking API — Cards. 2 operations. Lead operation: Temenos Transact List Cards. Self-contained
    Naftiko capability covering one Temenos Transact business surface.'
  tags:
  - Temenos Transact
  - Cards
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TEMENOS_TRANSACT_API_KEY: TEMENOS_TRANSACT_API_KEY
capability:
  consumes:
  - type: http
    namespace: core-banking-cards
    baseUri: https://api.temenos.com/api/v1.0.0
    description: Temenos Transact Core Banking API — Cards business capability. Self-contained, no shared references.
    resources:
    - name: holdings-cards
      path: /holdings/cards
      operations:
      - name: getcards
        method: GET
        description: Temenos Transact List Cards
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: holdings-cards-cardId
      path: /holdings/cards/{cardId}
      operations:
      - name: getcard
        method: GET
        description: Temenos Transact Get Card Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: cardId
          in: path
          type: string
          description: Unique identifier of the card
          required: true
    authentication:
      type: bearer
      token: '{{env.TEMENOS_TRANSACT_API_KEY}}'
  exposes:
  - type: rest
    namespace: core-banking-cards-rest
    port: 8080
    description: REST adapter for Temenos Transact Core Banking API — Cards. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/holdings/cards
      name: holdings-cards
      description: REST surface for holdings-cards.
      operations:
      - method: GET
        name: getcards
        description: Temenos Transact List Cards
        call: core-banking-cards.getcards
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/holdings/cards/{cardid}
      name: holdings-cards-cardid
      description: REST surface for holdings-cards-cardId.
      operations:
      - method: GET
        name: getcard
        description: Temenos Transact Get Card Details
        call: core-banking-cards.getcard
        with:
          cardId: rest.cardId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: core-banking-cards-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Transact Core Banking API — Cards. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: temenos-transact-list-cards
      description: Temenos Transact List Cards
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-cards.getcards
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-get-card-details
      description: Temenos Transact Get Card Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-cards.getcard
      with:
        cardId: tools.cardId
      outputParameters:
      - type: object
        mapping: $.