![]() |
VOOZH | about |
The CData API Driver for ADO.NET is a standard ADO.NET Provider that make it easy to accomplish data cleansing, normalization, backup, and other integration tasks by enabling real-time access to Zoom.
The ADO.NET Provider provides a SQL interface for Zoom; this tutorial shows how to use the Provider to retrieve Zoom data.
Once you have acquired the necessary connection properties, accessing Zoom data in PowerShell can be enabled in three steps.
Start by setting the Profile connection property to the location of the Zoom Profile on disk (e.g. C:\profiles\Zoom.apip). Next, set the ProfileSettings connection property to the connection string for Zoom (see below).
To authenticate to Zoom, you can use the OAuth standard to connect to your own data or to allow other users to connect to their data.
First create an OAuth app. To do so, navigate to https://marketplace.zoom.us/develop/create and click Create under the OAuth section. Select whether or not the app will be for individual users or for the entire account, and uncheck the box to publish the app. Give the app a name and click Create. You will then be given your Client Secret and Client ID
After setting the following connection properties, you are ready to connect:
Load the provider's assembly:
[Reflection.Assembly]::LoadFile("C:\Program Files\CData\CData API Driver for ADO.NET\lib\System.Data.CData.API.dll")
Connect to Zoom:
$conn= New-Object System.Data.CData.API.APIConnection("Profile=C:\profiles\Zoom.apip;Authscheme=OAuth;OAuthClientId=your_client_id;OAuthClientSecret=your_client_secret;CallbackUrl=your_callback_url;")
$conn.Open()
Instantiate the APIDataAdapter, execute an SQL query, and output the results:
$sql="SELECT Id, JobTitle from MeetingRegistrants"
$da= New-Object System.Data.CData.API.APIDataAdapter($sql, $conn)
$dt= New-Object System.Data.DataTable
$da.Fill($dt)
$dt.Rows | foreach {
Write-Host $_.id $_.jobtitle
}
Connect to live data from Zoom with the API Driver
Connect to Zoom