SharePoint Online Connector
Documentation
Version: 18
Documentation
Endpoint

List SharePoint System Lists


Name

list_system_lists

Description

No description available

Related Tables

SystemLists

Parameters

Parameter Label Required Options Description
SiteId Site Id (Re-Select Drive Id after you change this) NO Specify a site

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
Id DT_WSTR nvarchar(500) 500 False
Name DT_WSTR nvarchar(300) 300 False
DisplayName DT_WSTR nvarchar(188) 188 False
ParentReferenceSiteId DT_WSTR nvarchar(388) 388 False
ListContentTypesEnabled DT_BOOL bit False
IsListHidden DT_BOOL bit False
ListTemplate DT_WSTR nvarchar(88) 88 False
Description DT_WSTR nvarchar(500) 500 False
CreatedAt DT_DBTIMESTAMP datetime False
CreatedByUserId DT_WSTR nvarchar(144) 144 False
CreatedByUserEmail DT_WSTR nvarchar(124) 124 False
CreatedByUser DT_WSTR nvarchar(56) 56 False
LastModifiedAt DT_DBTIMESTAMP datetime False
LastModifiedByUser DT_WSTR nvarchar(48) 48 False
LastModifiedByUserEmail DT_WSTR nvarchar(100) 100 False
LastModifiedByUserId DT_WSTR nvarchar(144) 144 False
WebUrl DT_WSTR nvarchar(300) 300 False
If the column you are looking for is missing, consider customizing SharePoint Online Connector.

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 SharePoint Online Connector in API Source component to read data or in API Destination component to read/write data:

Read from SystemLists table using API Destination

This Endpoint belongs to SystemLists table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

SharePoint Online
SystemLists
Select
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

List sharepoint system lists

SELECT * FROM list_system_lists

list_system_lists endpoint belongs to SystemLists 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:

List sharepoint system lists

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM list_system_lists';

EXEC (@MyQuery) AT [LS_TO_SHAREPOINT_ONLINE_IN_GATEWAY];

list_system_lists endpoint belongs to SystemLists table(s), and can therefore be used via those table(s).