Sandbox Banking · Capability

Sandbox Banking Glyue Integration Gateway API — Service Requests

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

Run with Naftiko Sandbox BankingService Requests

What You Can Do

GET
Listservicerequests — List Service Requests
/v1/integrations/{integrationid}/service-requests
POST
Createservicerequest — Create Service Request
/v1/integrations/{integrationid}/service-requests

MCP Tools

list-service-requests

List Service Requests

read-only idempotent
create-service-request

Create Service Request

Capability Spec

glyue-service-requests.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sandbox Banking Glyue Integration Gateway API — Service Requests
  description: 'Sandbox Banking Glyue Integration Gateway API — Service Requests. 2 operations. Lead operation: List Service
    Requests. Self-contained Naftiko capability covering one Sandbox Banking business surface.'
  tags:
  - Sandbox Banking
  - Service Requests
  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-service-requests
    baseUri: https://{tenant}.sandboxbanking.com/api
    description: Sandbox Banking Glyue Integration Gateway API — Service Requests business capability. Self-contained, no
      shared references.
    resources:
    - name: integrations-integrationId-service-requests
      path: /integrations/{integrationId}/service-requests
      operations:
      - name: listservicerequests
        method: GET
        description: List Service Requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createservicerequest
        method: POST
        description: Create Service Request
        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: Authorization
      value: '{{env.SANDBOX_BANKING_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: glyue-service-requests-rest
    port: 8080
    description: REST adapter for Sandbox Banking Glyue Integration Gateway API — Service Requests. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/integrations/{integrationid}/service-requests
      name: integrations-integrationid-service-requests
      description: REST surface for integrations-integrationId-service-requests.
      operations:
      - method: GET
        name: listservicerequests
        description: List Service Requests
        call: glyue-service-requests.listservicerequests
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservicerequest
        description: Create Service Request
        call: glyue-service-requests.createservicerequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: glyue-service-requests-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sandbox Banking Glyue Integration Gateway API — Service Requests. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-service-requests
      description: List Service Requests
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: glyue-service-requests.listservicerequests
      outputParameters:
      - type: object
        mapping: $.
    - name: create-service-request
      description: Create Service Request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: glyue-service-requests.createservicerequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.