I am trying to forward a ticket to another user. This is the code I am using and I am unable to get it to work any ideas?
$params = @{
to_email = "Email@email.com"
body = "OPTIONAL_NOTE_TO_ADD_TO_THE_TICKET"
}
$credPair = "$APIKey:."
$encodedCredentials = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($credPair))
$headers = @{ Authorization = "Basic $encodedCredentials" }
Invoke-RestMethod "https://domain.com/api/v2/tickets/*TicketNumber*/forward" -Headers $headers -ContentType "application/json" -Method Post -Body ($params | ConvertTo-Json) -UseBasicParsing
Question
How do I forward ticket as a email with PowerShell
Reply
Join the Community
Already have an account? Login.
Sign in to the Community
No account yet? Create an account.
Social Login
Login with LinkedInor use your username
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.