Select-FreshDesk Cmdlet
Searches Freshdesk data.
Syntax
Select-FreshDesk [parameters]
Remarks
The Select-FreshDesk cmdlet allows you to use a syntax similar to SQL SELECT statements to search Freshdesk data.
$conn = Connect-FreshDesk -Domain "MyDomain" -APIKey "myAPIKey" Select-FreshDesk -Connection $conn -Table "Tickets" -Columns @("Id","Name") -Where "Status='2'"