Synctera · Capability

Synctera API — KYC Verification

Synctera API — KYC Verification. 4 operations. Lead operation: List verification results. Self-contained Naftiko capability covering one Synctera business surface.

Run with Naftiko SyncteraKYC Verification

What You Can Do

GET
Listverifications — List verification results
/v1/customers/{customer-id}/verifications
POST
Createcustomerverificationresult — Create a customer verification result
/v1/customers/{customer-id}/verifications
GET
Getverification — Get verification result
/v1/customers/{customer-id}/verifications/{verification-id}
POST
Verifycustomer — Verify a customer's identity
/v1/customers/{customer-id}/verify

MCP Tools

list-verification-results

List verification results

read-only idempotent
create-customer-verification-result

Create a customer verification result

get-verification-result

Get verification result

read-only idempotent
verify-customer-s-identity

Verify a customer's identity

Capability Spec

synctera-kyc-verification.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Synctera API — KYC Verification
  description: 'Synctera API — KYC Verification. 4 operations. Lead operation: List verification results. Self-contained Naftiko
    capability covering one Synctera business surface.'
  tags:
  - Synctera
  - KYC Verification
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SYNCTERA_API_KEY: SYNCTERA_API_KEY
capability:
  consumes:
  - type: http
    namespace: synctera-kyc-verification
    baseUri: https://api.synctera.com/v0
    description: Synctera API — KYC Verification business capability. Self-contained, no shared references.
    resources:
    - name: customers-customer_id-verifications
      path: /customers/{customer_id}/verifications
      operations:
      - name: listverifications
        method: GET
        description: List verification results
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcustomerverificationresult
        method: POST
        description: Create a customer verification result
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: customers-customer_id-verifications-verification_id
      path: /customers/{customer_id}/verifications/{verification_id}
      operations:
      - name: getverification
        method: GET
        description: Get verification result
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: customers-customer_id-verify
      path: /customers/{customer_id}/verify
      operations:
      - name: verifycustomer
        method: POST
        description: Verify a customer's identity
        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-kyc-verification-rest
    port: 8080
    description: REST adapter for Synctera API — KYC Verification. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/customers/{customer-id}/verifications
      name: customers-customer-id-verifications
      description: REST surface for customers-customer_id-verifications.
      operations:
      - method: GET
        name: listverifications
        description: List verification results
        call: synctera-kyc-verification.listverifications
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcustomerverificationresult
        description: Create a customer verification result
        call: synctera-kyc-verification.createcustomerverificationresult
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/customers/{customer-id}/verifications/{verification-id}
      name: customers-customer-id-verifications-verification-id
      description: REST surface for customers-customer_id-verifications-verification_id.
      operations:
      - method: GET
        name: getverification
        description: Get verification result
        call: synctera-kyc-verification.getverification
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/customers/{customer-id}/verify
      name: customers-customer-id-verify
      description: REST surface for customers-customer_id-verify.
      operations:
      - method: POST
        name: verifycustomer
        description: Verify a customer's identity
        call: synctera-kyc-verification.verifycustomer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: synctera-kyc-verification-mcp
    port: 9090
    transport: http
    description: MCP adapter for Synctera API — KYC Verification. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-verification-results
      description: List verification results
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: synctera-kyc-verification.listverifications
      outputParameters:
      - type: object
        mapping: $.
    - name: create-customer-verification-result
      description: Create a customer verification result
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: synctera-kyc-verification.createcustomerverificationresult
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-verification-result
      description: Get verification result
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: synctera-kyc-verification.getverification
      outputParameters:
      - type: object
        mapping: $.
    - name: verify-customer-s-identity
      description: Verify a customer's identity
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: synctera-kyc-verification.verifycustomer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.