FrankieOne · Capability

KYC V2 API — Individual Profiles

KYC V2 API — Individual Profiles. 2 operations. Lead operation: Update a profile for a given individual entity.. Self-contained Naftiko capability covering one Frankieone business surface.

Run with Naftiko FrankieoneIndividual Profiles

What You Can Do

PATCH
Updateprofile — Update a profile for a given individual entity.
/v1/v2/individuals/{entityid}/serviceprofiles/{servicename}
GET
Getprofile — Get a service profile for a given individual entity.
/v1/v2/individuals/{entityid}/serviceprofiles/{servicename}

MCP Tools

update-profile-given-individual-entity

Update a profile for a given individual entity.

idempotent
get-service-profile-given-individual

Get a service profile for a given individual entity.

read-only idempotent

Capability Spec

kyc-v2-individual-profiles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: KYC V2 API — Individual Profiles
  description: 'KYC V2 API — Individual Profiles. 2 operations. Lead operation: Update a profile for a given individual entity..
    Self-contained Naftiko capability covering one Frankieone business surface.'
  tags:
  - Frankieone
  - Individual Profiles
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FRANKIEONE_API_KEY: FRANKIEONE_API_KEY
capability:
  consumes:
  - type: http
    namespace: kyc-v2-individual-profiles
    baseUri: https://api.uat.frankie.one
    description: KYC V2 API — Individual Profiles business capability. Self-contained, no shared references.
    resources:
    - name: v2-individuals-entityId-serviceprofiles-serviceName
      path: /v2/individuals/{entityId}/serviceprofiles/{serviceName}
      operations:
      - name: updateprofile
        method: PATCH
        description: Update a profile for a given individual entity.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: getprofile
        method: GET
        description: Get a service profile for a given individual entity.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.FRANKIEONE_API_KEY}}'
  exposes:
  - type: rest
    namespace: kyc-v2-individual-profiles-rest
    port: 8080
    description: REST adapter for KYC V2 API — Individual Profiles. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/individuals/{entityid}/serviceprofiles/{servicename}
      name: v2-individuals-entityid-serviceprofiles-servicename
      description: REST surface for v2-individuals-entityId-serviceprofiles-serviceName.
      operations:
      - method: PATCH
        name: updateprofile
        description: Update a profile for a given individual entity.
        call: kyc-v2-individual-profiles.updateprofile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getprofile
        description: Get a service profile for a given individual entity.
        call: kyc-v2-individual-profiles.getprofile
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: kyc-v2-individual-profiles-mcp
    port: 9090
    transport: http
    description: MCP adapter for KYC V2 API — Individual Profiles. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: update-profile-given-individual-entity
      description: Update a profile for a given individual entity.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: kyc-v2-individual-profiles.updateprofile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-service-profile-given-individual
      description: Get a service profile for a given individual entity.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: kyc-v2-individual-profiles.getprofile
      outputParameters:
      - type: object
        mapping: $.