Intralinks · Capability

Intralinks API — Workspaces

Intralinks API — Workspaces. 5 operations. Lead operation: Intralinks List Workspaces. Self-contained Naftiko capability covering one Intralinks business surface.

Run with Naftiko IntralinksWorkspaces

What You Can Do

GET
Listworkspaces — Intralinks List Workspaces
/v1/workspaces
POST
Createworkspace — Intralinks Create Workspace
/v1/workspaces
GET
Getworkspace — Intralinks Get Workspace
/v1/workspaces/{workspaceid}
PUT
Updateworkspace — Intralinks Update Workspace
/v1/workspaces/{workspaceid}
DELETE
Deleteworkspace — Intralinks Delete Workspace
/v1/workspaces/{workspaceid}

MCP Tools

intralinks-list-workspaces

Intralinks List Workspaces

read-only idempotent
intralinks-create-workspace

Intralinks Create Workspace

intralinks-get-workspace

Intralinks Get Workspace

read-only idempotent
intralinks-update-workspace

Intralinks Update Workspace

idempotent
intralinks-delete-workspace

Intralinks Delete Workspace

idempotent

Capability Spec

intralinks-workspaces.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Intralinks API — Workspaces
  description: 'Intralinks API — Workspaces. 5 operations. Lead operation: Intralinks List Workspaces. Self-contained Naftiko
    capability covering one Intralinks business surface.'
  tags:
  - Intralinks
  - Workspaces
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INTRALINKS_API_KEY: INTRALINKS_API_KEY
capability:
  consumes:
  - type: http
    namespace: intralinks-workspaces
    baseUri: https://api.intralinks.com/v2
    description: Intralinks API — Workspaces business capability. Self-contained, no shared references.
    resources:
    - name: workspaces
      path: /workspaces
      operations:
      - name: listworkspaces
        method: GET
        description: Intralinks List Workspaces
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: query
          type: string
        - name: offset
          in: query
          type: integer
        - name: limit
          in: query
          type: integer
      - name: createworkspace
        method: POST
        description: Intralinks Create Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: workspaces-workspaceId
      path: /workspaces/{workspaceId}
      operations:
      - name: getworkspace
        method: GET
        description: Intralinks Get Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateworkspace
        method: PUT
        description: Intralinks Update Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteworkspace
        method: DELETE
        description: Intralinks Delete Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.INTRALINKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: intralinks-workspaces-rest
    port: 8080
    description: REST adapter for Intralinks API — Workspaces. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/workspaces
      name: workspaces
      description: REST surface for workspaces.
      operations:
      - method: GET
        name: listworkspaces
        description: Intralinks List Workspaces
        call: intralinks-workspaces.listworkspaces
        with:
          type: rest.type
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createworkspace
        description: Intralinks Create Workspace
        call: intralinks-workspaces.createworkspace
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}
      name: workspaces-workspaceid
      description: REST surface for workspaces-workspaceId.
      operations:
      - method: GET
        name: getworkspace
        description: Intralinks Get Workspace
        call: intralinks-workspaces.getworkspace
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateworkspace
        description: Intralinks Update Workspace
        call: intralinks-workspaces.updateworkspace
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteworkspace
        description: Intralinks Delete Workspace
        call: intralinks-workspaces.deleteworkspace
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: intralinks-workspaces-mcp
    port: 9090
    transport: http
    description: MCP adapter for Intralinks API — Workspaces. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: intralinks-list-workspaces
      description: Intralinks List Workspaces
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intralinks-workspaces.listworkspaces
      with:
        type: tools.type
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-create-workspace
      description: Intralinks Create Workspace
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: intralinks-workspaces.createworkspace
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-get-workspace
      description: Intralinks Get Workspace
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intralinks-workspaces.getworkspace
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-update-workspace
      description: Intralinks Update Workspace
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: intralinks-workspaces.updateworkspace
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-delete-workspace
      description: Intralinks Delete Workspace
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: intralinks-workspaces.deleteworkspace
      outputParameters:
      - type: object
        mapping: $.