Synctera · Capability

Synctera API — ACH

Synctera API — ACH. 4 operations. Lead operation: List sent ACH transactions. Self-contained Naftiko capability covering one Synctera business surface.

Run with Naftiko SyncteraACH

What You Can Do

GET
Listtransactionsout — List sent ACH transactions
/v1/ach
POST
Addtransactionout — Send an ACH
/v1/ach
GET
Gettransactionout — Get a sent ACH transaction
/v1/ach/{transaction-id}
PATCH
Patchtransactionout — Update a sent ACH transaction
/v1/ach/{transaction-id}

MCP Tools

list-sent-ach-transactions

List sent ACH transactions

read-only idempotent
send-ach

Send an ACH

get-sent-ach-transaction

Get a sent ACH transaction

read-only idempotent
update-sent-ach-transaction

Update a sent ACH transaction

idempotent

Capability Spec

synctera-ach.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Synctera API — ACH
  description: 'Synctera API — ACH. 4 operations. Lead operation: List sent ACH transactions. Self-contained Naftiko capability
    covering one Synctera business surface.'
  tags:
  - Synctera
  - ACH
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SYNCTERA_API_KEY: SYNCTERA_API_KEY
capability:
  consumes:
  - type: http
    namespace: synctera-ach
    baseUri: https://api.synctera.com/v0
    description: Synctera API — ACH business capability. Self-contained, no shared references.
    resources:
    - name: ach
      path: /ach
      operations:
      - name: listtransactionsout
        method: GET
        description: List sent ACH transactions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: addtransactionout
        method: POST
        description: Send an ACH
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ach-transaction_id
      path: /ach/{transaction_id}
      operations:
      - name: gettransactionout
        method: GET
        description: Get a sent ACH transaction
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: patchtransactionout
        method: PATCH
        description: Update a sent ACH transaction
        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.SYNCTERA_API_KEY}}'
  exposes:
  - type: rest
    namespace: synctera-ach-rest
    port: 8080
    description: REST adapter for Synctera API — ACH. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/ach
      name: ach
      description: REST surface for ach.
      operations:
      - method: GET
        name: listtransactionsout
        description: List sent ACH transactions
        call: synctera-ach.listtransactionsout
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: addtransactionout
        description: Send an ACH
        call: synctera-ach.addtransactionout
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ach/{transaction-id}
      name: ach-transaction-id
      description: REST surface for ach-transaction_id.
      operations:
      - method: GET
        name: gettransactionout
        description: Get a sent ACH transaction
        call: synctera-ach.gettransactionout
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchtransactionout
        description: Update a sent ACH transaction
        call: synctera-ach.patchtransactionout
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: synctera-ach-mcp
    port: 9090
    transport: http
    description: MCP adapter for Synctera API — ACH. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-sent-ach-transactions
      description: List sent ACH transactions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: synctera-ach.listtransactionsout
      outputParameters:
      - type: object
        mapping: $.
    - name: send-ach
      description: Send an ACH
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: synctera-ach.addtransactionout
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-sent-ach-transaction
      description: Get a sent ACH transaction
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: synctera-ach.gettransactionout
      outputParameters:
      - type: object
        mapping: $.
    - name: update-sent-ach-transaction
      description: Update a sent ACH transaction
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: synctera-ach.patchtransactionout
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.