Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →How to pipe Klaviyo Data to CSV in PowerShell
Use standard PowerShell cmdlets to access Klaviyo tables.
The CData Cmdlets Module for Klaviyo is a standard PowerShell module offering straightforward integration with Klaviyo. Below, you will find examples of using our API Cmdlets with native PowerShell cmdlets.
Creating a Connection to Your Klaviyo Data
Start by setting the Profile connection property to the location of the Klaviyo Profile on disk (e.g. C:\profiles\Klaviyo.apip). Next, set the ProfileSettings connection property to the connection string for Klaviyo (see below).
Klaviyo API Profile Settings
To authenticate to Klaviyo, you will needto provide an API Key. You can generate or view your API keys under 'My Account' > 'Setting' > 'API Key' > 'Create API Key'. Set the API Key to your Klaviyo Key in the ProfileSettings connection property.
$conn = Connect-API -Profile "$Profile" -ProfileSettings "$ProfileSettings"
Selecting Data
Follow the steps below to retrieve data from the Campaigns table and pipe the result into to a CSV file:
Select-API -Connection $conn -Table Campaigns | Select -Property * -ExcludeProperty Connection,Table,Columns | Export-Csv -Path c:\myCampaignsData.csv -NoTypeInformation
You will notice that we piped the results from Select-API into a Select-Object cmdlet and excluded some properties before piping them into an Export-Csv cmdlet. We do this because the CData Cmdlets append Connection, Table, and Columns information onto each "row" in the result set, and we do not necessarily want that information in our CSV file.
The Connection, Table, and Columns are appended to the results in order to facilitate piping results from one of the CData Cmdlets directly into another one.