Temenos · Capability

Temenos Payments API — Direct Debits

Temenos Payments API — Direct Debits. 2 operations. Lead operation: List Direct Debit Mandates. Self-contained Naftiko capability covering one Temenos business surface.

Run with Naftiko TemenosDirect Debits

What You Can Do

GET
Listdirectdebits — List Direct Debit Mandates
/v1/directdebits
GET
Getdirectdebit — Get Direct Debit Details
/v1/directdebits/{directdebitid}

MCP Tools

list-direct-debit-mandates

List Direct Debit Mandates

read-only idempotent
get-direct-debit-details

Get Direct Debit Details

read-only idempotent

Capability Spec

payments-direct-debits.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Payments API — Direct Debits
  description: 'Temenos Payments API — Direct Debits. 2 operations. Lead operation: List Direct Debit Mandates. Self-contained
    Naftiko capability covering one Temenos business surface.'
  tags:
  - Temenos
  - Direct Debits
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TEMENOS_API_KEY: TEMENOS_API_KEY
capability:
  consumes:
  - type: http
    namespace: payments-direct-debits
    baseUri: https://api.temenos.com/payments/v1
    description: Temenos Payments API — Direct Debits business capability. Self-contained, no shared references.
    resources:
    - name: directDebits
      path: /directDebits
      operations:
      - name: listdirectdebits
        method: GET
        description: List Direct Debit Mandates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: query
          type: string
          description: Filter by debited account identifier
    - name: directDebits-directDebitId
      path: /directDebits/{directDebitId}
      operations:
      - name: getdirectdebit
        method: GET
        description: Get Direct Debit Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: directDebitId
          in: path
          type: string
          description: Unique direct debit mandate identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.TEMENOS_API_KEY}}'
  exposes:
  - type: rest
    namespace: payments-direct-debits-rest
    port: 8080
    description: REST adapter for Temenos Payments API — Direct Debits. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/directdebits
      name: directdebits
      description: REST surface for directDebits.
      operations:
      - method: GET
        name: listdirectdebits
        description: List Direct Debit Mandates
        call: payments-direct-debits.listdirectdebits
        with:
          accountId: rest.accountId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/directdebits/{directdebitid}
      name: directdebits-directdebitid
      description: REST surface for directDebits-directDebitId.
      operations:
      - method: GET
        name: getdirectdebit
        description: Get Direct Debit Details
        call: payments-direct-debits.getdirectdebit
        with:
          directDebitId: rest.directDebitId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: payments-direct-debits-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Payments API — Direct Debits. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-direct-debit-mandates
      description: List Direct Debit Mandates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payments-direct-debits.listdirectdebits
      with:
        accountId: tools.accountId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-direct-debit-details
      description: Get Direct Debit Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payments-direct-debits.getdirectdebit
      with:
        directDebitId: tools.directDebitId
      outputParameters:
      - type: object
        mapping: $.