Okta · Capability

Okta API — GroupSchema

Okta API — GroupSchema. 2 operations. Lead operation: Okta Fetches the group schema. Self-contained Naftiko capability covering one Okta business surface.

Run with Naftiko OktaGroupSchema

What You Can Do

GET
Getgroupschema — Okta Fetches the group schema
/v1/api/v1/meta/schemas/group/default
POST
Updategroupschema — Okta Updates, adds ore removes one or more custom Group Profile properties in the schema
/v1/api/v1/meta/schemas/group/default

MCP Tools

okta-fetches-group-schema

Okta Fetches the group schema

read-only idempotent
okta-updates-adds-ore-removes

Okta Updates, adds ore removes one or more custom Group Profile properties in the schema

Capability Spec

okta-groupschema.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Okta API — GroupSchema
  description: 'Okta API — GroupSchema. 2 operations. Lead operation: Okta Fetches the group schema. Self-contained Naftiko
    capability covering one Okta business surface.'
  tags:
  - Okta
  - GroupSchema
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    OKTA_API_KEY: OKTA_API_KEY
capability:
  consumes:
  - type: http
    namespace: okta-groupschema
    baseUri: https://your-subdomain.okta.com
    description: Okta API — GroupSchema business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-meta-schemas-group-default
      path: /api/v1/meta/schemas/group/default
      operations:
      - name: getgroupschema
        method: GET
        description: Okta Fetches the group schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updategroupschema
        method: POST
        description: Okta Updates, adds ore removes one or more custom Group Profile properties in the schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.OKTA_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: okta-groupschema-rest
    port: 8080
    description: REST adapter for Okta API — GroupSchema. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/v1/meta/schemas/group/default
      name: api-v1-meta-schemas-group-default
      description: REST surface for api-v1-meta-schemas-group-default.
      operations:
      - method: GET
        name: getgroupschema
        description: Okta Fetches the group schema
        call: okta-groupschema.getgroupschema
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: updategroupschema
        description: Okta Updates, adds ore removes one or more custom Group Profile properties in the schema
        call: okta-groupschema.updategroupschema
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: okta-groupschema-mcp
    port: 9090
    transport: http
    description: MCP adapter for Okta API — GroupSchema. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: okta-fetches-group-schema
      description: Okta Fetches the group schema
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: okta-groupschema.getgroupschema
      outputParameters:
      - type: object
        mapping: $.
    - name: okta-updates-adds-ore-removes
      description: Okta Updates, adds ore removes one or more custom Group Profile properties in the schema
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: okta-groupschema.updategroupschema
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.