Fintecture · Capability

Fintecture Customers API — Customers

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

Fintecture Customers API — Customers is a Naftiko capability published by Fintecture, one of 21 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the POST and GET methods rooted at /v1/v1/customers.

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

Tagged areas include Fintecture and Customers.

Run with Naftiko FintectureCustomers

What You Can Do

POST
Createcustomer
/v1/v1/customers
GET
Listallcustomers
/v1/v1/customers

MCP Tools

fintecture-create-customer

Create Customer

fintecture-list-customers

List All Customers

read-only idempotent
fintecture-get-customer

Get A Customer

read-only idempotent

Capability Spec

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