Reference

Endpoint List SharePoint System Lists


Name

list_system_lists

Description

No description available

Related Tables

SystemLists

Parameters

Parameter Required Options
Name: SiteId

Label: Site Id (Re-Select Drive Id after you change this)

Specify a site

Output Columns

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

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 SharePoint Online Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

This Endpoint belongs to the SystemLists table, therefore it is better to use it, instead of accessing the endpoint directly:

API Source - SharePoint Online
SharePoint Connector can be used to read, write data in SharePoint Online List / Document Library, perform file operations such as upload, download, create, move, delete, rename in a few clicks!
SharePoint Online
SystemLists
Optional Parameters
Site Id (Re-Select Drive Id after you change this)
SSIS API Source - Read from table or endpoint

API Destination

This Endpoint belongs to the SystemLists table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to list sharepoint system lists:

API Destination - SharePoint Online
SharePoint Connector can be used to read, write data in SharePoint Online List / Document Library, perform file operations such as upload, download, create, move, delete, rename in a few clicks!
SharePoint Online
SystemLists
Select
Optional Parameters
Site Id (Re-Select Drive Id after you change this)
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

Get SystemLists

SELECT * FROM SystemLists

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:

Get SystemLists

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

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).