Reference

Endpoint Get Groups


Name

get_groups

Description

Get the list of groups. [API reference]

Parameters

Parameter Required Options
Name: OrderBy

Label: Order By

Order the specified column by ascending or descending order
Option Value
None
AscendingOrder SomeColumn asc
DescendingOrder SomeColumn desc
Name: SearchCriteria

Label: Search Criteria

Data filter (e.g. somecolumn -eq 'somevalue')
Option Value
None
Equal Search SomeColumn eq 'SomeValue'
Substring Search substringof(SomeField,'abc')
Starts With startswith(SomeField, 'abc')
Name: PageSize

Label: Page Size

The number of records to include in each page of results

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
Id DT_WSTR nvarchar(255) 255
DisplayName DT_WSTR nvarchar(500) 500
Description DT_WSTR nvarchar(4000) 4000
Mail DT_WSTR nvarchar(200) 200
IdPath DT_WSTR nvarchar(255) 255
CreatedDateTime DT_DBTIMESTAMP datetime
DeletedDateTime DT_DBTIMESTAMP datetime
If the column you are looking for is missing, consider customizing OneDrive 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 OneDrive Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

API Source - OneDrive
OneDrive Connector can be used to integrate OneDrive and your defined data source, e.g. Microsoft SQL, Oracle, Excel, Power BI, etc. Get, write, delete OneDrive data in a few clicks!
OneDrive
Get Groups
Optional Parameters
DataFormat OData
SSIS API Source - Read from table or endpoint

API Destination

API Destination - OneDrive
OneDrive Connector can be used to integrate OneDrive and your defined data source, e.g. Microsoft SQL, Oracle, Excel, Power BI, etc. Get, write, delete OneDrive data in a few clicks!
OneDrive
Get Groups
Optional Parameters
DataFormat OData
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Get groups

SELECT * FROM get_groups

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Get groups

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

EXEC (@MyQuery) AT [LS_TO_ONEDRIVE_IN_GATEWAY];