Intralinks · Capability

Intralinks API — Authentication

Intralinks API — Authentication. 2 operations. Lead operation: Intralinks Revoke OAuth Token. Self-contained Naftiko capability covering one Intralinks business surface.

Run with Naftiko IntralinksAuthentication

What You Can Do

POST
Revokeoauthtoken — Intralinks Revoke OAuth Token
/v1/oauth/revoke
POST
Getoauthtoken — Intralinks Obtain OAuth Token
/v1/oauth/token

MCP Tools

intralinks-revoke-oauth-token

Intralinks Revoke OAuth Token

intralinks-obtain-oauth-token

Intralinks Obtain OAuth Token

Capability Spec

intralinks-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Intralinks API — Authentication
  description: 'Intralinks API — Authentication. 2 operations. Lead operation: Intralinks Revoke OAuth Token. Self-contained
    Naftiko capability covering one Intralinks business surface.'
  tags:
  - Intralinks
  - Authentication
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INTRALINKS_API_KEY: INTRALINKS_API_KEY
capability:
  consumes:
  - type: http
    namespace: intralinks-authentication
    baseUri: https://api.intralinks.com/v2
    description: Intralinks API — Authentication business capability. Self-contained, no shared references.
    resources:
    - name: oauth-revoke
      path: /oauth/revoke
      operations:
      - name: revokeoauthtoken
        method: POST
        description: Intralinks Revoke OAuth Token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: oauth-token
      path: /oauth/token
      operations:
      - name: getoauthtoken
        method: POST
        description: Intralinks Obtain OAuth Token
        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-authentication-rest
    port: 8080
    description: REST adapter for Intralinks API — Authentication. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/oauth/revoke
      name: oauth-revoke
      description: REST surface for oauth-revoke.
      operations:
      - method: POST
        name: revokeoauthtoken
        description: Intralinks Revoke OAuth Token
        call: intralinks-authentication.revokeoauthtoken
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/oauth/token
      name: oauth-token
      description: REST surface for oauth-token.
      operations:
      - method: POST
        name: getoauthtoken
        description: Intralinks Obtain OAuth Token
        call: intralinks-authentication.getoauthtoken
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: intralinks-authentication-mcp
    port: 9090
    transport: http
    description: MCP adapter for Intralinks API — Authentication. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: intralinks-revoke-oauth-token
      description: Intralinks Revoke OAuth Token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: intralinks-authentication.revokeoauthtoken
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: intralinks-obtain-oauth-token
      description: Intralinks Obtain OAuth Token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: intralinks-authentication.getoauthtoken
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.