Select-Highrise Cmdlet
Searches Highrise data.
Syntax
Select-Highrise [parameters]
Remarks
The Select-Highrise cmdlet allows you to use a syntax similar to SQL SELECT statements to search Highrise data.
$conn = Connect-Highrise -OAuthClientId 'MyOAuthClientId' -OAuthClientSecret 'MyOAuthClientSecret' -CallbackURL 'http://localhost' -AccountId 'MyAccountId' Select-Highrise -Connection $conn -Table "People" -Columns @("Id","Firstname") -Where "Id='MyId'"