Select-Paylocity Cmdlet
Searches Paylocity data.
Syntax
Select-Paylocity [parameters]
Remarks
The Select-Paylocity cmdlet allows you to use a syntax similar to SQL SELECT statements to search Paylocity data.
$conn = Connect-Paylocity -InitiateOauth "GETANDREFRESH" -OAuthClientID "YourClientId" -OAuthClientSecret "YourClientSecret" -RSAPublicKey "YourRSAPubKey" -Key "YourKey" -IV "YourIV" Select-Paylocity -Connection $conn -Table "Employee" -Columns @("FirstName","LastName") -Where "EmployeeId='1234'"