RestBI Documentation
  • Welcome to RestBI
  • Getting Started
    • Quickstart Guide for RestBI
    • Installation
      • Docker Compose
      • Kubernetes
  • Object Definitions
    • Data Model
      • Model
      • Connection
      • Table
      • Join
      • Column
      • Formula
      • ValidationResult
    • Query
      • Query
      • QueryFilter
      • SQLResult
  • SDK
    • Overview
    • Reference
      • RestBIClient
      • executeQuery
      • getMetadata
      • validateModel
  • API
    • Overview
    • Reference
      • POST /query
      • POST /validate
      • POST /metadata
      • GET /
  • Examples
    • RestBI Demo App
      • Installation
      • Report Builder
      • Drill Anywhere
      • Model Helper
Powered by GitBook
On this page
  1. SDK
  2. Reference

RestBIClient

Understanding the RestBI Client

Class: RestBIClient

Constructor

new RestBIClient(serverURL: string)

Description: Creates an instance of the RestBIClient class.

  • Parameters:

    • serverURL (string): The base URL of the RestBI server.

Example:

const client = new RestBIClient('http://localhost:3000');

PreviousReferenceNextexecuteQuery

Last updated 8 months ago