Okta · Capability

Okta API — LinkedObject

Okta API — LinkedObject. 4 operations. Lead operation: LinkedObject. Self-contained Naftiko capability covering one Okta business surface.

Run with Naftiko OktaLinkedObject

What You Can Do

GET
Listlinkedobjectdefinitions — Success
/v1/api/v1/meta/schemas/user/linkedobjects
POST
Addlinkedobjectdefinition — Success
/v1/api/v1/meta/schemas/user/linkedobjects
GET
Getlinkedobjectdefinition — Success
/v1/api/v1/meta/schemas/user/linkedobjects/{linkedobjectname}
DELETE
Deletelinkedobjectdefinition — Success
/v1/api/v1/meta/schemas/user/linkedobjects/{linkedobjectname}

MCP Tools

success

Success

read-only idempotent
success-2

Success

success-3

Success

read-only idempotent
success-4

Success

idempotent

Capability Spec

okta-linkedobject.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Okta API — LinkedObject
  description: 'Okta API — LinkedObject. 4 operations. Lead operation: LinkedObject. Self-contained Naftiko capability covering
    one Okta business surface.'
  tags:
  - Okta
  - LinkedObject
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    OKTA_API_KEY: OKTA_API_KEY
capability:
  consumes:
  - type: http
    namespace: okta-linkedobject
    baseUri: https://your-subdomain.okta.com
    description: Okta API — LinkedObject business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-meta-schemas-user-linkedObjects
      path: /api/v1/meta/schemas/user/linkedObjects
      operations:
      - name: listlinkedobjectdefinitions
        method: GET
        description: Success
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: addlinkedobjectdefinition
        method: POST
        description: Success
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v1-meta-schemas-user-linkedObjects-linkedObjectName
      path: /api/v1/meta/schemas/user/linkedObjects/{linkedObjectName}
      operations:
      - name: getlinkedobjectdefinition
        method: GET
        description: Success
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: linkedObjectName
          in: path
          type: string
          required: true
      - name: deletelinkedobjectdefinition
        method: DELETE
        description: Success
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: linkedObjectName
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.OKTA_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: okta-linkedobject-rest
    port: 8080
    description: REST adapter for Okta API — LinkedObject. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/v1/meta/schemas/user/linkedobjects
      name: api-v1-meta-schemas-user-linkedobjects
      description: REST surface for api-v1-meta-schemas-user-linkedObjects.
      operations:
      - method: GET
        name: listlinkedobjectdefinitions
        description: Success
        call: okta-linkedobject.listlinkedobjectdefinitions
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: addlinkedobjectdefinition
        description: Success
        call: okta-linkedobject.addlinkedobjectdefinition
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/meta/schemas/user/linkedobjects/{linkedobjectname}
      name: api-v1-meta-schemas-user-linkedobjects-linkedobjectname
      description: REST surface for api-v1-meta-schemas-user-linkedObjects-linkedObjectName.
      operations:
      - method: GET
        name: getlinkedobjectdefinition
        description: Success
        call: okta-linkedobject.getlinkedobjectdefinition
        with:
          linkedObjectName: rest.linkedObjectName
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletelinkedobjectdefinition
        description: Success
        call: okta-linkedobject.deletelinkedobjectdefinition
        with:
          linkedObjectName: rest.linkedObjectName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: okta-linkedobject-mcp
    port: 9090
    transport: http
    description: MCP adapter for Okta API — LinkedObject. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: success
      description: Success
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: okta-linkedobject.listlinkedobjectdefinitions
      outputParameters:
      - type: object
        mapping: $.
    - name: success-2
      description: Success
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: okta-linkedobject.addlinkedobjectdefinition
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: success-3
      description: Success
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: okta-linkedobject.getlinkedobjectdefinition
      with:
        linkedObjectName: tools.linkedObjectName
      outputParameters:
      - type: object
        mapping: $.
    - name: success-4
      description: Success
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: okta-linkedobject.deletelinkedobjectdefinition
      with:
        linkedObjectName: tools.linkedObjectName
      outputParameters:
      - type: object
        mapping: $.