Select-Marketo Cmdlet
Searches Marketo data.
Syntax
Select-Marketo [parameters]
Remarks
The Select-Marketo cmdlet allows you to use a syntax similar to SQL SELECT statements to search Marketo data.
$conn = -Connect-Marketo -URL 'https://MyMarketoUrl.mktorest.com/' -OAuthClientId 'MyOAuthClientId' -OAuthClientSecret 'MyOAuthClientSecret'
Select-Marketo -Connection $conn -Table "Leads" -Columns @("Id","Email") -Where "Email='[email protected]'"