Select-SalesLoft Cmdlet
Searches Salesloft data.
Syntax
Select-SalesLoft [parameters]
Remarks
The Select-SalesLoft cmdlet allows you to use a syntax similar to SQL SELECT statements to search Salesloft data.
$conn = Connect-SalesLoft -InitiateOAuth "GETANDREFRESH" -AuthScheme "OAuth" -OAuthClientID "MyOAuthClientId" -OAuthClientSecret "MyOAuthClientSecret" -CallbackURL "http://localhost:33333" Select-SalesLoft -Connection $conn -Table "Accounts" -Columns @("Id","Name") -Where "Name='Bob'"