Crystal Reports · Capability

SAP Crystal Reports RESTful Web Services API — Authentication

SAP Crystal Reports RESTful Web Services API — Authentication. 2 operations. Lead operation: Crystal Reports Get Logon Form Template. Self-contained Naftiko capability covering one Crystal Reports business surface.

Run with Naftiko Crystal ReportsAuthentication

What You Can Do

GET
Getlogonform — Crystal Reports Get Logon Form Template
/v1/logon/long
POST
Logon — Crystal Reports Authenticate with Username and Password
/v1/logon/long

MCP Tools

crystal-reports-get-logon-form

Crystal Reports Get Logon Form Template

read-only idempotent
crystal-reports-authenticate-username-and

Crystal Reports Authenticate with Username and Password

Capability Spec

rest-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SAP Crystal Reports RESTful Web Services API — Authentication
  description: 'SAP Crystal Reports RESTful Web Services API — Authentication. 2 operations. Lead operation: Crystal Reports
    Get Logon Form Template. Self-contained Naftiko capability covering one Crystal Reports business surface.'
  tags:
  - Crystal Reports
  - Authentication
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CRYSTAL_REPORTS_API_KEY: CRYSTAL_REPORTS_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-authentication
    baseUri: http://{host}:{port}/biprws
    description: SAP Crystal Reports RESTful Web Services API — Authentication business capability. Self-contained, no shared
      references.
    resources:
    - name: logon-long
      path: /logon/long
      operations:
      - name: getlogonform
        method: GET
        description: Crystal Reports Get Logon Form Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: logon
        method: POST
        description: Crystal Reports Authenticate with Username and Password
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-SAP-LogonToken
      value: '{{env.CRYSTAL_REPORTS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: rest-authentication-rest
    port: 8080
    description: REST adapter for SAP Crystal Reports RESTful Web Services API — Authentication. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/logon/long
      name: logon-long
      description: REST surface for logon-long.
      operations:
      - method: GET
        name: getlogonform
        description: Crystal Reports Get Logon Form Template
        call: rest-authentication.getlogonform
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: logon
        description: Crystal Reports Authenticate with Username and Password
        call: rest-authentication.logon
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-authentication-mcp
    port: 9090
    transport: http
    description: MCP adapter for SAP Crystal Reports RESTful Web Services API — Authentication. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: crystal-reports-get-logon-form
      description: Crystal Reports Get Logon Form Template
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-authentication.getlogonform
      outputParameters:
      - type: object
        mapping: $.
    - name: crystal-reports-authenticate-username-and
      description: Crystal Reports Authenticate with Username and Password
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-authentication.logon
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.