EndPoint List Tables (JSON API)
Parameters
Parameter | Label | Required | Options | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Format | Format | NO | Response format | |||||||||||||
PageSize | PageSize (Keep blank for default) | NO | Number which indicates max rows per response. Keep it blank to use API default vlaue. Read your API documentation to findout default value. | |||||||||||||
SearchCriteria | Search Criteria | NO |
|
Data filter (e.g. somecolumn -eq 'somevalue' ) [API reference] |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use OData Connector in API Source component to read data or in API Destination component to read/write data:
List Tables (JSON API) using API Source
OData
List Tables (JSON API)

List Tables (JSON API) using API Destination
OData
List Tables (JSON API)

ODBC application
Use these SQL queries in your ODBC application data source:
List all Tables (JSON Based Format)
SELECT * FROM list_tables_json
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
List all Tables (JSON Based Format)
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_tables_json';
EXEC (@MyQuery) AT [LS_TO_ODATA_IN_GATEWAY];