Endpoint Get Sheet Properties / Tab information
Name
get_sheet_properties
Description
Read read sheet properties (e.g. list of tabs on sheet and its properties) [API reference]
Related Tables
Parameters
Parameter | Required | Options | ||||||
---|---|---|---|---|---|---|---|---|
Name:
Label: SpreadSheetId |
YES |
|
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | 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 | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Google Sheets Connector in API Source or in API Destination SSIS Data Flow components to read or write data.
API Source
This Endpoint belongs to the SheetDetails table, therefore it is better to use it, instead of accessing the endpoint directly:
Required Parameters | |
---|---|
SpreadSheetId | Fill-in the parameter... |
Optional Parameters | |
IncludeParentColumns | False |

API Destination
This Endpoint belongs to the SheetDetails table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to get sheet properties / tab information:
Required Parameters | |
---|---|
SpreadSheetId | Fill-in the parameter... |
Optional Parameters | |
IncludeParentColumns | False |

ODBC application
Use these SQL queries in your ODBC application data source:
Get SheetDetails
SELECT * FROM SheetDetails
get_sheet_properties
endpoint belongs to
SheetDetails
table(s), and can therefore be used via those table(s).
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get SheetDetails
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM SheetDetails';
EXEC (@MyQuery) AT [LS_TO_GOOGLE_SHEETS_IN_GATEWAY];
get_sheet_properties
endpoint belongs to
SheetDetails
table(s), and can therefore be used via those table(s).