Scotiabank · Capability

Scotiabank Scotia TranXact APIs — EFT Payments

Scotiabank Scotia TranXact APIs — EFT Payments. 4 operations. Lead operation: Create EFT Payment. Self-contained Naftiko capability covering one Scotiabank business surface.

Run with Naftiko ScotiabankEFT Payments

What You Can Do

POST
Createeftpayment — Create EFT Payment
/v1/v1/payments/eft
GET
Geteftpayment — Get EFT Payment
/v1/v1/payments/eft/{payment-id}
PATCH
Updateeftpayment — Update EFT Payment
/v1/v1/payments/eft/{payment-id}
DELETE
Deleteeftpayment — Delete EFT Payment
/v1/v1/payments/eft/{payment-id}

MCP Tools

create-eft-payment

Create EFT Payment

get-eft-payment

Get EFT Payment

read-only idempotent
update-eft-payment

Update EFT Payment

idempotent
delete-eft-payment

Delete EFT Payment

idempotent

Capability Spec

tranxact-eft-payments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Scotiabank Scotia TranXact APIs — EFT Payments
  description: 'Scotiabank Scotia TranXact APIs — EFT Payments. 4 operations. Lead operation: Create EFT Payment. Self-contained
    Naftiko capability covering one Scotiabank business surface.'
  tags:
  - Scotiabank
  - EFT Payments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SCOTIABANK_API_KEY: SCOTIABANK_API_KEY
capability:
  consumes:
  - type: http
    namespace: tranxact-eft-payments
    baseUri: https://developer.api.scotiabank.com
    description: Scotiabank Scotia TranXact APIs — EFT Payments business capability. Self-contained, no shared references.
    resources:
    - name: v1-payments-eft
      path: /v1/payments/eft
      operations:
      - name: createeftpayment
        method: POST
        description: Create EFT Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-payments-eft-payment_id
      path: /v1/payments/eft/{payment_id}
      operations:
      - name: geteftpayment
        method: GET
        description: Get EFT Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: payment_id
          in: path
          type: string
          required: true
      - name: updateeftpayment
        method: PATCH
        description: Update EFT Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: payment_id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteeftpayment
        method: DELETE
        description: Delete EFT Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: payment_id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.SCOTIABANK_API_KEY}}'
  exposes:
  - type: rest
    namespace: tranxact-eft-payments-rest
    port: 8080
    description: REST adapter for Scotiabank Scotia TranXact APIs — EFT Payments. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v1/payments/eft
      name: v1-payments-eft
      description: REST surface for v1-payments-eft.
      operations:
      - method: POST
        name: createeftpayment
        description: Create EFT Payment
        call: tranxact-eft-payments.createeftpayment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/payments/eft/{payment-id}
      name: v1-payments-eft-payment-id
      description: REST surface for v1-payments-eft-payment_id.
      operations:
      - method: GET
        name: geteftpayment
        description: Get EFT Payment
        call: tranxact-eft-payments.geteftpayment
        with:
          payment_id: rest.payment_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateeftpayment
        description: Update EFT Payment
        call: tranxact-eft-payments.updateeftpayment
        with:
          payment_id: rest.payment_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteeftpayment
        description: Delete EFT Payment
        call: tranxact-eft-payments.deleteeftpayment
        with:
          payment_id: rest.payment_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tranxact-eft-payments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Scotiabank Scotia TranXact APIs — EFT Payments. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: create-eft-payment
      description: Create EFT Payment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tranxact-eft-payments.createeftpayment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-eft-payment
      description: Get EFT Payment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tranxact-eft-payments.geteftpayment
      with:
        payment_id: tools.payment_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-eft-payment
      description: Update EFT Payment
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tranxact-eft-payments.updateeftpayment
      with:
        payment_id: tools.payment_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-eft-payment
      description: Delete EFT Payment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tranxact-eft-payments.deleteeftpayment
      with:
        payment_id: tools.payment_id
      outputParameters:
      - type: object
        mapping: $.