Fintecture · Capability

Fintecture Customers API — Bank Accounts

Fintecture Customers API — Bank Accounts. 3 operations. Lead operation: Create Customer Bank Account.

Fintecture Customers API — Bank Accounts is a Naftiko capability published by Fintecture, one of 21 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the POST method rooted at /v1/v1/customers/{…}/bank-accounts.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: Create Customer Bank Account. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Fintecture, Customers, and Bank Accounts.

Run with Naftiko FintectureCustomersBank Accounts

What You Can Do

POST
Createcustomerbankaccount
/v1/v1/customers/{customer_id}/bank-accounts

MCP Tools

fintecture-create-customer-bank-account

Create Customer Bank Account

fintecture-list-customer-bank-accounts

List All Customer Bank Accounts

read-only idempotent

Capability Spec

customers-bank-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fintecture Customers API — Bank Accounts
  description: 'Fintecture Customers API — Bank Accounts. 3 operations. Lead operation: Create Customer Bank Account.'
  tags: [Fintecture, Customers, Bank Accounts]
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      FINTECTURE_CUSTOMER_TOKEN: FINTECTURE_CUSTOMER_TOKEN
capability:
  consumes:
    - type: http
      namespace: customers-bank-accounts
      baseUri: https://api.fintecture.com
      description: Manage customer bank accounts.
      resources:
        - name: v1-customer-bank-accounts
          path: /v1/customers/{customer_id}/bank-accounts
          operations:
            - name: createcustomerbankaccount
              method: POST
              description: Create Customer Bank Account
              outputRawFormat: json
              outputParameters: [{ name: result, type: object, value: '$.' }]
              inputParameters:
                - { name: customer_id, in: path, required: true }
                - { name: body, in: body, required: true }
            - name: listallcustomerbankaccounts
              method: GET
              description: List All Customer Bank Accounts
              outputRawFormat: json
              outputParameters: [{ name: result, type: object, value: '$.' }]
              inputParameters:
                - { name: customer_id, in: path, required: true }
        - name: v1-customer-bank-account
          path: /v1/customers/{customer_id}/bank-accounts/{account_id}
          operations:
            - name: getbankaccountbyid
              method: GET
              description: Get A Bank Account From A Customer
              outputRawFormat: json
              outputParameters: [{ name: result, type: object, value: '$.' }]
              inputParameters:
                - { name: customer_id, in: path, required: true }
                - { name: account_id, in: path, required: true }
      authentication:
        type: bearer
        value: '{{env.FINTECTURE_CUSTOMER_TOKEN}}'
        placement: header
  exposes:
    - type: rest
      namespace: customers-bank-accounts-rest
      port: 8080
      resources:
        - path: /v1/v1/customers/{customer_id}/bank-accounts
          name: v1-customer-bank-accounts
          operations:
            - { method: POST, name: createcustomerbankaccount, call: customers-bank-accounts.createcustomerbankaccount, with: { customer_id: rest.customer_id, body: rest.body } }
    - type: mcp
      namespace: customers-bank-accounts-mcp
      port: 9090
      transport: http
      tools:
        - name: fintecture-create-customer-bank-account
          description: Create Customer Bank Account
          hints: { readOnly: false, destructive: false, idempotent: false }
          call: customers-bank-accounts.createcustomerbankaccount
          with: { customer_id: tools.customer_id, body: tools.body }
        - name: fintecture-list-customer-bank-accounts
          description: List All Customer Bank Accounts
          hints: { readOnly: true, destructive: false, idempotent: true }
          call: customers-bank-accounts.listallcustomerbankaccounts
          with: { customer_id: tools.customer_id }