Sandbox Banking · Capability

Sandbox Banking Glyue Integration Gateway API — Run History

Sandbox Banking Glyue Integration Gateway API — Run History. 2 operations. Lead operation: List Run History. Self-contained Naftiko capability covering one Sandbox Banking business surface.

Run with Naftiko Sandbox BankingRun History

What You Can Do

GET
Listrunhistory — List Run History
/v1/run-history
GET
Getrunhistory — Get Run History Entry
/v1/run-history/{runid}

MCP Tools

list-run-history

List Run History

read-only idempotent
get-run-history-entry

Get Run History Entry

read-only idempotent

Capability Spec

glyue-run-history.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sandbox Banking Glyue Integration Gateway API — Run History
  description: 'Sandbox Banking Glyue Integration Gateway API — Run History. 2 operations. Lead operation: List Run History.
    Self-contained Naftiko capability covering one Sandbox Banking business surface.'
  tags:
  - Sandbox Banking
  - Run History
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SANDBOX_BANKING_API_KEY: SANDBOX_BANKING_API_KEY
capability:
  consumes:
  - type: http
    namespace: glyue-run-history
    baseUri: https://{tenant}.sandboxbanking.com/api
    description: Sandbox Banking Glyue Integration Gateway API — Run History business capability. Self-contained, no shared
      references.
    resources:
    - name: run-history
      path: /run-history
      operations:
      - name: listrunhistory
        method: GET
        description: List Run History
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: integration_id
          in: query
          type: string
          description: Filter by integration ID.
        - name: status
          in: query
          type: string
          description: Filter by run status.
        - name: start_date
          in: query
          type: string
          description: Filter runs on or after this date (ISO 8601).
        - name: end_date
          in: query
          type: string
          description: Filter runs on or before this date (ISO 8601).
        - name: page
          in: query
          type: integer
          description: Page number.
        - name: page_size
          in: query
          type: integer
          description: Results per page.
    - name: run-history-runId
      path: /run-history/{runId}
      operations:
      - name: getrunhistory
        method: GET
        description: Get Run History Entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: runId
          in: path
          type: string
          description: Run identifier.
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.SANDBOX_BANKING_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: glyue-run-history-rest
    port: 8080
    description: REST adapter for Sandbox Banking Glyue Integration Gateway API — Run History. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/run-history
      name: run-history
      description: REST surface for run-history.
      operations:
      - method: GET
        name: listrunhistory
        description: List Run History
        call: glyue-run-history.listrunhistory
        with:
          integration_id: rest.integration_id
          status: rest.status
          start_date: rest.start_date
          end_date: rest.end_date
          page: rest.page
          page_size: rest.page_size
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/run-history/{runid}
      name: run-history-runid
      description: REST surface for run-history-runId.
      operations:
      - method: GET
        name: getrunhistory
        description: Get Run History Entry
        call: glyue-run-history.getrunhistory
        with:
          runId: rest.runId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: glyue-run-history-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sandbox Banking Glyue Integration Gateway API — Run History. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-run-history
      description: List Run History
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: glyue-run-history.listrunhistory
      with:
        integration_id: tools.integration_id
        status: tools.status
        start_date: tools.start_date
        end_date: tools.end_date
        page: tools.page
        page_size: tools.page_size
      outputParameters:
      - type: object
        mapping: $.
    - name: get-run-history-entry
      description: Get Run History Entry
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: glyue-run-history.getrunhistory
      with:
        runId: tools.runId
      outputParameters:
      - type: object
        mapping: $.