Total System Services · Capability

TSYS Issuing Platform — Controls

TSYS Issuing Platform — Controls. 2 operations. Lead operation: Get Card Controls. Self-contained Naftiko capability covering one Total System Services business surface.

Run with Naftiko Total System ServicesControls

What You Can Do

GET
Getcardcontrols — Get Card Controls
/v1/cards/{cardid}/controls
PUT
Updatecardcontrols — Update Card Controls
/v1/cards/{cardid}/controls

MCP Tools

get-card-controls

Get Card Controls

read-only idempotent
update-card-controls

Update Card Controls

idempotent

Capability Spec

tsys-issuing-controls.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TSYS Issuing Platform — Controls
  description: 'TSYS Issuing Platform — Controls. 2 operations. Lead operation: Get Card Controls. Self-contained Naftiko
    capability covering one Total System Services business surface.'
  tags:
  - Total System Services
  - Controls
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TOTAL_SYSTEM_SERVICES_API_KEY: TOTAL_SYSTEM_SERVICES_API_KEY
capability:
  consumes:
  - type: http
    namespace: tsys-issuing-controls
    baseUri: https://issuing.api.tsys.com/v1
    description: TSYS Issuing Platform — Controls business capability. Self-contained, no shared references.
    resources:
    - name: cards-cardId-controls
      path: /cards/{cardId}/controls
      operations:
      - name: getcardcontrols
        method: GET
        description: Get Card Controls
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: cardId
          in: path
          type: string
          required: true
      - name: updatecardcontrols
        method: PUT
        description: Update Card Controls
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: cardId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.TOTAL_SYSTEM_SERVICES_API_KEY}}'
  exposes:
  - type: rest
    namespace: tsys-issuing-controls-rest
    port: 8080
    description: REST adapter for TSYS Issuing Platform — Controls. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/cards/{cardid}/controls
      name: cards-cardid-controls
      description: REST surface for cards-cardId-controls.
      operations:
      - method: GET
        name: getcardcontrols
        description: Get Card Controls
        call: tsys-issuing-controls.getcardcontrols
        with:
          cardId: rest.cardId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecardcontrols
        description: Update Card Controls
        call: tsys-issuing-controls.updatecardcontrols
        with:
          cardId: rest.cardId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tsys-issuing-controls-mcp
    port: 9090
    transport: http
    description: MCP adapter for TSYS Issuing Platform — Controls. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-card-controls
      description: Get Card Controls
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tsys-issuing-controls.getcardcontrols
      with:
        cardId: tools.cardId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-card-controls
      description: Update Card Controls
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tsys-issuing-controls.updatecardcontrols
      with:
        cardId: tools.cardId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.