Sandbox Banking website screenshot

Sandbox Banking

Sandbox Banking (now nCino Integration Gateway) is an Integration Platform as a Service (iPaaS) purpose-built for financial institutions. The platform enables banks and credit unions to connect core banking systems (Fiserv, Jack Henry, FIS, and 14+ other cores) with fintech applications, loan origination systems, CRMs, KYC/AML providers, and 50+ financial services solutions. Glyue, the core integration framework, provides low-code workflow automation with Python extensibility, audit trails, role-based access control, and regulatory compliance features aligned with CFPB Section 1033, GLBA, and FFIEC guidelines.

2 APIs 0 Features
API IntegrationBankingCore BankingCredit UnionsFinancial ServicesFintechIntegration PlatformiPaaSOpen Banking

APIs

Glyue Integration Gateway API

The Glyue Integration Gateway API provides programmatic access to the Sandbox Banking integration platform for building, managing, and monitoring banking integrations. The API s...

Mock Bank API

The Mock Bank API provides a sandbox environment for testing and developing banking integrations without connecting to production core banking systems. It simulates standard ban...

Collections

Pricing Plans

Rate Limits

Sandbox Banking Rate Limits

5 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Sandbox Banking Context

43 classes · 0 properties

JSON-LD

API Governance Rules

Sandbox Banking API Rules

13 rules · 4 errors 7 warnings 2 info

SPECTRAL

JSON Structure

Sandbox Banking Integration Structure

0 properties

JSON STRUCTURE

Example Payloads

Resources

🔗
LinkedIn
LinkedIn
🔗
Glyue Integration Gateway Documentation
Documentation
🔗
nCino Integration Gateway
Documentation
🔗
Mock Bank API Documentation
Documentation
🔗
Sandbox Banking Website
Website
🔗
Sandbox Banking API Spectral Rules
SpectralRules
🔗
Sandbox Banking Integration Schema
JSONSchema
🔗
Sandbox Banking Integration Structure
JSONStructure
🔗
Sandbox Banking JSON-LD Context
JSONLDContext
💻
Sandbox Banking List Integrations Example
Examples
💻
Sandbox Banking Run Integration Example
Examples
🔗
Sandbox Banking Vocabulary
Vocabulary
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Sandbox Banking Glyue Integration Gateway API
  version: 1.0.0
request:
  auth:
    type: apikey
    key: Authorization
    value: '{{Authorization}}'
    placement: header
items:
- info:
    name: Integrations
    type: folder
  items:
  - info:
      name: List Integrations
      type: http
    http:
      method: GET
      url: https://{tenant}.sandboxbanking.com/api/integrations
      params:
      - name: status
        value: ''
        type: query
        description: Filter integrations by status.
      - name: page
        value: ''
        type: query
        description: Page number for pagination.
      - name: page_size
        value: ''
        type: query
        description: Number of results per page.
    docs: Returns a list of all integration workflows configured in the Glyue platform for the authenticated tenant.
  - info:
      name: Create Integration
      type: http
    http:
      method: POST
      url: https://{tenant}.sandboxbanking.com/api/integrations
      body:
        type: json
        data: '{}'
    docs: Creates a new integration workflow in the Glyue platform.
  - info:
      name: Get Integration
      type: http
    http:
      method: GET
      url: https://{tenant}.sandboxbanking.com/api/integrations/:integrationId
      params:
      - name: integrationId
        value: ''
        type: path
        description: Unique integration identifier.
    docs: Returns details for a specific integration workflow.
  - info:
      name: Update Integration
      type: http
    http:
      method: PUT
      url: https://{tenant}.sandboxbanking.com/api/integrations/:integrationId
      params:
      - name: integrationId
        value: ''
        type: path
        description: Unique integration identifier.
      body:
        type: json
        data: '{}'
    docs: Updates an existing integration workflow configuration.
  - info:
      name: Delete Integration
      type: http
    http:
      method: DELETE
      url: https://{tenant}.sandboxbanking.com/api/integrations/:integrationId
      params:
      - name: integrationId
        value: ''
        type: path
        description: Unique integration identifier.
    docs: Deletes an integration workflow from the platform.
  - info:
      name: Run Integration
      type: http
    http:
      method: POST
      url: https://{tenant}.sandboxbanking.com/api/integrations/:integrationId/run
      params:
      - name: integrationId
        value: ''
        type: path
        description: Unique integration identifier.
      body:
        type: json
        data: '{}'
    docs: Executes an integration workflow synchronously or asynchronously with the provided input payload. Returns the run
      ID for status tracking.
- info:
    name: Service Requests
    type: folder
  items:
  - info:
      name: List Service Requests
      type: http
    http:
      method: GET
      url: https://{tenant}.sandboxbanking.com/api/integrations/:integrationId/service-requests
      params:
      - name: integrationId
        value: ''
        type: path
        description: Unique integration identifier.
    docs: Returns all service request adapters configured for an integration, in execution order.
  - info:
      name: Create Service Request
      type: http
    http:
      method: POST
      url: https://{tenant}.sandboxbanking.com/api/integrations/:integrationId/service-requests
      params:
      - name: integrationId
        value: ''
        type: path
        description: Unique integration identifier.
      body:
        type: json
        data: '{}'
    docs: Adds a new service request adapter to an integration workflow.
- info:
    name: Field Mappings
    type: folder
  items:
  - info:
      name: List Field Mappings
      type: http
    http:
      method: GET
      url: https://{tenant}.sandboxbanking.com/api/integrations/:integrationId/field-mappings
      params:
      - name: integrationId
        value: ''
        type: path
        description: Unique integration identifier.
    docs: Returns all field mapping definitions for a specific integration, showing source-to-target data transformation rules.
  - info:
      name: Create Field Mapping
      type: http
    http:
      method: POST
      url: https://{tenant}.sandboxbanking.com/api/integrations/:integrationId/field-mappings
      params:
      - name: integrationId
        value: ''
        type: path
        description: Unique integration identifier.
      body:
        type: json
        data: '{}'
    docs: Creates a new field mapping rule for source-to-target data transformation.
- info:
    name: Value Mappings
    type: folder
  items:
  - info:
      name: List Value Mappings
      type: http
    http:
      method: GET
      url: https://{tenant}.sandboxbanking.com/api/value-mappings
      params:
      - name: page
        value: ''
        type: query
        description: Page number.
      - name: page_size
        value: ''
        type: query
        description: Results per page.
    docs: Returns all value mapping tables configured in the platform for translating enumerated values between source and
      target systems.
  - info:
      name: Create Value Mapping
      type: http
    http:
      method: POST
      url: https://{tenant}.sandboxbanking.com/api/value-mappings
      body:
        type: json
        data: '{}'
    docs: Creates a new value mapping table for translating enumerated field values.
- info:
    name: Run History
    type: folder
  items:
  - info:
      name: List Run History
      type: http
    http:
      method: GET
      url: https://{tenant}.sandboxbanking.com/api/run-history
      params:
      - name: integration_id
        value: ''
        type: query
        description: Filter by integration ID.
      - name: status
        value: ''
        type: query
        description: Filter by run status.
      - name: start_date
        value: ''
        type: query
        description: Filter runs on or after this date (ISO 8601).
      - name: end_date
        value: ''
        type: query
        description: Filter runs on or before this date (ISO 8601).
      - name: page
        value: ''
        type: query
        description: Page number.
      - name: page_size
        value: ''
        type: query
        description: Results per page.
    docs: Returns the run history audit log for integration executions, with request/response bodies, timestamps, statuses,
      and error details.
  - info:
      name: Get Run History Entry
      type: http
    http:
      method: GET
      url: https://{tenant}.sandboxbanking.com/api/run-history/:runId
      params:
      - name: runId
        value: ''
        type: path
        description: Run identifier.
    docs: Returns the full audit detail for a specific integration run including request body, response body, and service
      request execution log.
- info:
    name: Adapters
    type: folder
  items:
  - info:
      name: List Adapters
      type: http
    http:
      method: GET
      url: https://{tenant}.sandboxbanking.com/api/adapters
    docs: Returns all banking system and fintech adapters available in the Glyue platform including core banking adapters
      (Fiserv, Jack Henry, FIS) and fintech connectors (Salesforce, nCino, Encompass).
bundled: true