Sandbox Banking · Capability

Sandbox Banking Glyue Integration Gateway API — Integrations

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

Run with Naftiko Sandbox BankingIntegrations

What You Can Do

GET
Listintegrations — List Integrations
/v1/integrations
POST
Createintegration — Create Integration
/v1/integrations
GET
Getintegration — Get Integration
/v1/integrations/{integrationid}
PUT
Updateintegration — Update Integration
/v1/integrations/{integrationid}
DELETE
Deleteintegration — Delete Integration
/v1/integrations/{integrationid}
POST
Runintegration — Run Integration
/v1/integrations/{integrationid}/run

MCP Tools

list-integrations

List Integrations

read-only idempotent
create-integration

Create Integration

get-integration

Get Integration

read-only idempotent
update-integration

Update Integration

idempotent
delete-integration

Delete Integration

idempotent
run-integration

Run Integration

Capability Spec

glyue-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sandbox Banking Glyue Integration Gateway API — Integrations
  description: 'Sandbox Banking Glyue Integration Gateway API — Integrations. 6 operations. Lead operation: List Integrations.
    Self-contained Naftiko capability covering one Sandbox Banking business surface.'
  tags:
  - Sandbox Banking
  - Integrations
  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-integrations
    baseUri: https://{tenant}.sandboxbanking.com/api
    description: Sandbox Banking Glyue Integration Gateway API — Integrations business capability. Self-contained, no shared
      references.
    resources:
    - name: integrations
      path: /integrations
      operations:
      - name: listintegrations
        method: GET
        description: List Integrations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter integrations by status.
        - name: page
          in: query
          type: integer
          description: Page number for pagination.
        - name: page_size
          in: query
          type: integer
          description: Number of results per page.
      - name: createintegration
        method: POST
        description: Create Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: integrations-integrationId
      path: /integrations/{integrationId}
      operations:
      - name: getintegration
        method: GET
        description: Get Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateintegration
        method: PUT
        description: Update Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteintegration
        method: DELETE
        description: Delete Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: integrations-integrationId-run
      path: /integrations/{integrationId}/run
      operations:
      - name: runintegration
        method: POST
        description: Run Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.SANDBOX_BANKING_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: glyue-integrations-rest
    port: 8080
    description: REST adapter for Sandbox Banking Glyue Integration Gateway API — Integrations. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/integrations
      name: integrations
      description: REST surface for integrations.
      operations:
      - method: GET
        name: listintegrations
        description: List Integrations
        call: glyue-integrations.listintegrations
        with:
          status: rest.status
          page: rest.page
          page_size: rest.page_size
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createintegration
        description: Create Integration
        call: glyue-integrations.createintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/integrations/{integrationid}
      name: integrations-integrationid
      description: REST surface for integrations-integrationId.
      operations:
      - method: GET
        name: getintegration
        description: Get Integration
        call: glyue-integrations.getintegration
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateintegration
        description: Update Integration
        call: glyue-integrations.updateintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteintegration
        description: Delete Integration
        call: glyue-integrations.deleteintegration
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/integrations/{integrationid}/run
      name: integrations-integrationid-run
      description: REST surface for integrations-integrationId-run.
      operations:
      - method: POST
        name: runintegration
        description: Run Integration
        call: glyue-integrations.runintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: glyue-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sandbox Banking Glyue Integration Gateway API — Integrations. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-integrations
      description: List Integrations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: glyue-integrations.listintegrations
      with:
        status: tools.status
        page: tools.page
        page_size: tools.page_size
      outputParameters:
      - type: object
        mapping: $.
    - name: create-integration
      description: Create Integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: glyue-integrations.createintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-integration
      description: Get Integration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: glyue-integrations.getintegration
      outputParameters:
      - type: object
        mapping: $.
    - name: update-integration
      description: Update Integration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: glyue-integrations.updateintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-integration
      description: Delete Integration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: glyue-integrations.deleteintegration
      outputParameters:
      - type: object
        mapping: $.
    - name: run-integration
      description: Run Integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: glyue-integrations.runintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.