APIs
cancel
Showing results for 
Search instead for 
Did you mean: 

Knowledge Base Articles

REST API - Adding Data Level Security

When building code to automate the process of adding users (or groups), it may be beneficial to add security around those users. Follow the steps below to learn how to add data level security through the REST API:  Step 1 From your SiSense home pag...

intapiuser by Community Team Member
  • 1642 Views
  • 2 comments
  • 1 kudos

Dashboard Dictionary

Use Case My users and designers were looking for an easy way to get insights into how certain dashboards and widgets were built in terms of formulas and filters.  Solution For this, I have written a Python script that takes a list of dashboard IDs...

DRay_0-1707934801901.png
DRay by Community Team Leader
  • 573 Views
  • 0 comments
  • 1 kudos

Querying the Sisense Elasticube with Python

This article will cover two methods you can use to connect Python to the Elasticube. Method 1: Using ODBCMethod 2: Using the REST API Method 1: Connect to the EC with ODBC Download Sisense ODBC This method will require you to download the ODBC ...

intapiuser by Community Team Member
  • 1706 Views
  • 1 comments
  • 0 kudos

Schedule Download Of SQL API Queries To CSV

Introduction With the Python script below and the Window Scheduler, you can automate the download of csv files based on queries of the SQL API to the elasticube. This type of process comes in handy when a user needs to download information regularly...

intapiuser by Community Team Member
  • 1282 Views
  • 1 comments
  • 0 kudos

Python Script to Export Dashboards to CSV File

The following Python script allows exporting dashboard data to CSV files. The script will export each widget to a separate CSV file. This new version of the script uses Sisense's REST API an eliminates the direct connection to the mongodb. Important:...

intapiuser by Community Team Member
  • 3091 Views
  • 0 comments
  • 0 kudos

Sample Code for Sharing Dashboards Using the REST API in .NET

Introduction  A sample code to demonstrate adding shares using the Sisense API in .NET. The programs flow is a follows: Retrieve the authentication token using:Retrieve userID using:Retrieve the current shares for the dashboard using:Share the dashb...

intapiuser by Community Team Member
  • 1392 Views
  • 0 comments
  • 0 kudos

Is it possible to enable/disable a plugin with REST API?

Question: Is it possible to enable/disable a plugin with REST API? Answer:  Option 1 It is possible with the /api/plugins endpoint. Here is the script we use for a single enable/disable of a plugin; For enabling set isEnabled to True  For disabling ...

intapiuser by Community Team Member
  • 673 Views
  • 0 comments
  • 0 kudos

How To Create Elasticube Using Api

Question: Which api should i use to create my elasticube? Solution: At the moment, REST API for creating Datamodels is only available on Sisense for Linux, starting from version L8.0.2. This capability should become available on the Windows version ...

intapiuser by Community Team Member
  • 904 Views
  • 0 comments
  • 0 kudos

The Ability To Manage JDBC Connections

Question How to change the connection strings in an easy way? Answer Using the REST API you can update the data connection strings directly. Returns a list of all your connections: GET http://localhost:8081/api/v1/connection Updates a connection: ...