Intralinks · Capability

Intralinks API — Groups

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

Run with Naftiko IntralinksGroups

What You Can Do

GET
Listgroups — Intralinks List Groups
/v1/workspaces/{workspaceid}/groups
POST
Creategroup — Intralinks Create Group
/v1/workspaces/{workspaceid}/groups
GET
Getgroup — Intralinks Get Group
/v1/workspaces/{workspaceid}/groups/{groupid}
PUT
Updategroup — Intralinks Update Group
/v1/workspaces/{workspaceid}/groups/{groupid}
DELETE
Deletegroup — Intralinks Delete Group
/v1/workspaces/{workspaceid}/groups/{groupid}
GET
Listgroupmembers — Intralinks List Group Members
/v1/workspaces/{workspaceid}/groups/{groupid}/members
POST
Addgroupmember — Intralinks Add Group Member
/v1/workspaces/{workspaceid}/groups/{groupid}/members

MCP Tools

intralinks-list-groups

Intralinks List Groups

read-only idempotent
intralinks-create-group

Intralinks Create Group

intralinks-get-group

Intralinks Get Group

read-only idempotent
intralinks-update-group

Intralinks Update Group

idempotent
intralinks-delete-group

Intralinks Delete Group

idempotent
intralinks-list-group-members

Intralinks List Group Members

read-only idempotent
intralinks-add-group-member

Intralinks Add Group Member

Capability Spec

intralinks-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Intralinks API — Groups
  description: 'Intralinks API — Groups. 7 operations. Lead operation: Intralinks List Groups. Self-contained Naftiko capability
    covering one Intralinks business surface.'
  tags:
  - Intralinks
  - Groups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INTRALINKS_API_KEY: INTRALINKS_API_KEY
capability:
  consumes:
  - type: http
    namespace: intralinks-groups
    baseUri: https://api.intralinks.com/v2
    description: Intralinks API — Groups business capability. Self-contained, no shared references.
    resources:
    - name: workspaces-workspaceId-groups
      path: /workspaces/{workspaceId}/groups
      operations:
      - name: listgroups
        method: GET
        description: Intralinks List Groups
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: creategroup
        method: POST
        description: Intralinks Create Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: workspaces-workspaceId-groups-groupId
      path: /workspaces/{workspaceId}/groups/{groupId}
      operations:
      - name: getgroup
        method: GET
        description: Intralinks Get Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updategroup
        method: PUT
        description: Intralinks Update Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletegroup
        method: DELETE
        description: Intralinks Delete Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: workspaces-workspaceId-groups-groupId-members
      path: /workspaces/{workspaceId}/groups/{groupId}/members
      operations:
      - name: listgroupmembers
        method: GET
        description: Intralinks List Group Members
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: addgroupmember
        method: POST
        description: Intralinks Add Group Member
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.INTRALINKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: intralinks-groups-rest
    port: 8080
    description: REST adapter for Intralinks API — Groups. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/workspaces/{workspaceid}/groups
      name: workspaces-workspaceid-groups
      description: REST surface for workspaces-workspaceId-groups.
      operations:
      - method: GET
        name: listgroups
        description: Intralinks List Groups
        call: intralinks-groups.listgroups
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: creategroup
        description: Intralinks Create Group
        call: intralinks-groups.creategroup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}/groups/{groupid}
      name: workspaces-workspaceid-groups-groupid
      description: REST surface for workspaces-workspaceId-groups-groupId.
      operations:
      - method: GET
        name: getgroup
        description: Intralinks Get Group
        call: intralinks-groups.getgroup
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updategroup
        description: Intralinks Update Group
        call: intralinks-groups.updategroup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletegroup
        description: Intralinks Delete Group
        call: intralinks-groups.deletegroup
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}/groups/{groupid}/members
      name: workspaces-workspaceid-groups-groupid-members
      description: REST surface for workspaces-workspaceId-groups-groupId-members.
      operations:
      - method: GET
        name: listgroupmembers
        description: Intralinks List Group Members
        call: intralinks-groups.listgroupmembers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: addgroupmember
        description: Intralinks Add Group Member
        call: intralinks-groups.addgroupmember
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: intralinks-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for Intralinks API — Groups. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: intralinks-list-groups
      description: Intralinks List Groups
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intralinks-groups.listgroups
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-create-group
      description: Intralinks Create Group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: intralinks-groups.creategroup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-get-group
      description: Intralinks Get Group
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intralinks-groups.getgroup
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-update-group
      description: Intralinks Update Group
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: intralinks-groups.updategroup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-delete-group
      description: Intralinks Delete Group
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: intralinks-groups.deletegroup
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-list-group-members
      description: Intralinks List Group Members
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intralinks-groups.listgroupmembers
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-add-group-member
      description: Intralinks Add Group Member
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: intralinks-groups.addgroupmember
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.