Boltic · Capability

Boltic Workflow API — Executions

Boltic Workflow API — Executions. 3 operations. Lead operation: Boltic Get execution details. Self-contained Naftiko capability covering one Boltic business surface.

Run with Naftiko BolticExecutions

What You Can Do

GET
Getexecution — Boltic Get execution details
/v1/executions/{executionid}
POST
Cancelexecution — Boltic Cancel an execution
/v1/executions/{executionid}/cancel
GET
Listexecutions — Boltic List workflow executions
/v1/workflows/{workflowid}/executions

MCP Tools

boltic-get-execution-details

Boltic Get execution details

read-only idempotent
boltic-cancel-execution

Boltic Cancel an execution

boltic-list-workflow-executions

Boltic List workflow executions

read-only idempotent

Capability Spec

workflow-executions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Boltic Workflow API — Executions
  description: 'Boltic Workflow API — Executions. 3 operations. Lead operation: Boltic Get execution details. Self-contained
    Naftiko capability covering one Boltic business surface.'
  tags:
  - Boltic
  - Executions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BOLTIC_API_KEY: BOLTIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: workflow-executions
    baseUri: https://api.boltic.io/v1
    description: Boltic Workflow API — Executions business capability. Self-contained, no shared references.
    resources:
    - name: executions-executionId
      path: /executions/{executionId}
      operations:
      - name: getexecution
        method: GET
        description: Boltic Get execution details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: executionId
          in: path
          type: string
          required: true
    - name: executions-executionId-cancel
      path: /executions/{executionId}/cancel
      operations:
      - name: cancelexecution
        method: POST
        description: Boltic Cancel an execution
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: executionId
          in: path
          type: string
          required: true
    - name: workflows-workflowId-executions
      path: /workflows/{workflowId}/executions
      operations:
      - name: listexecutions
        method: GET
        description: Boltic List workflow executions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: workflowId
          in: path
          type: string
          required: true
        - name: page
          in: query
          type: integer
        - name: limit
          in: query
          type: integer
        - name: status
          in: query
          type: string
    authentication:
      type: bearer
      token: '{{env.BOLTIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: workflow-executions-rest
    port: 8080
    description: REST adapter for Boltic Workflow API — Executions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/executions/{executionid}
      name: executions-executionid
      description: REST surface for executions-executionId.
      operations:
      - method: GET
        name: getexecution
        description: Boltic Get execution details
        call: workflow-executions.getexecution
        with:
          executionId: rest.executionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/executions/{executionid}/cancel
      name: executions-executionid-cancel
      description: REST surface for executions-executionId-cancel.
      operations:
      - method: POST
        name: cancelexecution
        description: Boltic Cancel an execution
        call: workflow-executions.cancelexecution
        with:
          executionId: rest.executionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workflows/{workflowid}/executions
      name: workflows-workflowid-executions
      description: REST surface for workflows-workflowId-executions.
      operations:
      - method: GET
        name: listexecutions
        description: Boltic List workflow executions
        call: workflow-executions.listexecutions
        with:
          workflowId: rest.workflowId
          page: rest.page
          limit: rest.limit
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: workflow-executions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Boltic Workflow API — Executions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: boltic-get-execution-details
      description: Boltic Get execution details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: workflow-executions.getexecution
      with:
        executionId: tools.executionId
      outputParameters:
      - type: object
        mapping: $.
    - name: boltic-cancel-execution
      description: Boltic Cancel an execution
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: workflow-executions.cancelexecution
      with:
        executionId: tools.executionId
      outputParameters:
      - type: object
        mapping: $.
    - name: boltic-list-workflow-executions
      description: Boltic List workflow executions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: workflow-executions.listexecutions
      with:
        workflowId: tools.workflowId
        page: tools.page
        limit: tools.limit
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.