Acronis · Capability

Acronis Account Management API — Authentication

Acronis Account Management API — Authentication. 2 operations. Lead operation: Acronis Revoke Access Token. Self-contained Naftiko capability covering one Acronis business surface.

Run with Naftiko AcronisAuthentication

What You Can Do

POST
Revoketoken — Acronis Revoke Access Token
/v1/idp/revoke-token
POST
Requesttoken — Acronis Request Access Token
/v1/idp/token

MCP Tools

acronis-revoke-access-token

Acronis Revoke Access Token

acronis-request-access-token

Acronis Request Access Token

Capability Spec

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