Codat · Capability

Platform API — Integrations

Platform API — Integrations. 3 operations. Lead operation: List integrations. Self-contained Naftiko capability covering one Codat business surface.

Run with Naftiko CodatIntegrations

What You Can Do

GET
Listintegrations — List integrations
/v1/integrations
GET
Getintegration — Get integration
/v1/integrations/{platformkey}
GET
Getintegrationsbranding — Get branding
/v1/integrations/{platformkey}/branding

MCP Tools

list-integrations

List integrations

read-only idempotent
get-integration

Get integration

read-only idempotent
get-branding

Get branding

read-only idempotent

Capability Spec

platform-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Platform API — Integrations
  description: 'Platform API — Integrations. 3 operations. Lead operation: List integrations. Self-contained Naftiko capability
    covering one Codat business surface.'
  tags:
  - Codat
  - Integrations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CODAT_API_KEY: CODAT_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-integrations
    baseUri: https://api.codat.io
    description: Platform API — Integrations business capability. Self-contained, no shared references.
    resources:
    - name: integrations
      path: /integrations
      operations:
      - name: listintegrations
        method: GET
        description: List integrations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: integrations-platformKey
      path: /integrations/{platformKey}
      operations:
      - name: getintegration
        method: GET
        description: Get integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: integrations-platformKey-branding
      path: /integrations/{platformKey}/branding
      operations:
      - name: getintegrationsbranding
        method: GET
        description: Get branding
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.CODAT_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: platform-integrations-rest
    port: 8080
    description: REST adapter for Platform API — Integrations. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/integrations
      name: integrations
      description: REST surface for integrations.
      operations:
      - method: GET
        name: listintegrations
        description: List integrations
        call: platform-integrations.listintegrations
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/integrations/{platformkey}
      name: integrations-platformkey
      description: REST surface for integrations-platformKey.
      operations:
      - method: GET
        name: getintegration
        description: Get integration
        call: platform-integrations.getintegration
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/integrations/{platformkey}/branding
      name: integrations-platformkey-branding
      description: REST surface for integrations-platformKey-branding.
      operations:
      - method: GET
        name: getintegrationsbranding
        description: Get branding
        call: platform-integrations.getintegrationsbranding
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Platform API — Integrations. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-integrations
      description: List integrations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-integrations.listintegrations
      outputParameters:
      - type: object
        mapping: $.
    - name: get-integration
      description: Get integration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-integrations.getintegration
      outputParameters:
      - type: object
        mapping: $.
    - name: get-branding
      description: Get branding
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-integrations.getintegrationsbranding
      outputParameters:
      - type: object
        mapping: $.