Vantiv · Capability

Vantiv CNP API — eCheck

Vantiv CNP API — eCheck. 2 operations. Lead operation: Create eCheck Credit. Self-contained Naftiko capability covering one Vantiv business surface.

Run with Naftiko VantiveCheck

What You Can Do

POST
Createecheckcredit — Create eCheck Credit
/v1/echeckcredit
POST
Createechecksale — Create eCheck Sale
/v1/echecksale

MCP Tools

create-echeck-credit

Create eCheck Credit

read-only
create-echeck-sale

Create eCheck Sale

read-only

Capability Spec

cnp-echeck.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Vantiv CNP API — eCheck
  description: 'Vantiv CNP API — eCheck. 2 operations. Lead operation: Create eCheck Credit. Self-contained Naftiko capability
    covering one Vantiv business surface.'
  tags:
  - Vantiv
  - eCheck
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VANTIV_API_KEY: VANTIV_API_KEY
capability:
  consumes:
  - type: http
    namespace: cnp-echeck
    baseUri: https://payments.vantivprelive.com/vap/communicator/online
    description: Vantiv CNP API — eCheck business capability. Self-contained, no shared references.
    resources:
    - name: echeckCredit
      path: /echeckCredit
      operations:
      - name: createecheckcredit
        method: POST
        description: Create eCheck Credit
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: echeckSale
      path: /echeckSale
      operations:
      - name: createechecksale
        method: POST
        description: Create eCheck Sale
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.VANTIV_USER}}'
      password: '{{env.VANTIV_PASS}}'
  exposes:
  - type: rest
    namespace: cnp-echeck-rest
    port: 8080
    description: REST adapter for Vantiv CNP API — eCheck. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/echeckcredit
      name: echeckcredit
      description: REST surface for echeckCredit.
      operations:
      - method: POST
        name: createecheckcredit
        description: Create eCheck Credit
        call: cnp-echeck.createecheckcredit
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/echecksale
      name: echecksale
      description: REST surface for echeckSale.
      operations:
      - method: POST
        name: createechecksale
        description: Create eCheck Sale
        call: cnp-echeck.createechecksale
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cnp-echeck-mcp
    port: 9090
    transport: http
    description: MCP adapter for Vantiv CNP API — eCheck. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: create-echeck-credit
      description: Create eCheck Credit
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: cnp-echeck.createecheckcredit
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-echeck-sale
      description: Create eCheck Sale
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: cnp-echeck.createechecksale
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.