我正在尝试使用 Invoke-RestMethod 从 Freshdesk 获取票证。我收到的错误是“Invoke-RestMethod:无法发送具有此动词类型的内容主体”。我的功能如下所示:
function opentickets()
{
$Body = @{
#description = $description.Text
email = $email.Text
#subject = $subject.Text
#type = $request.Text
#priority = 1
#status = 2
}
Invoke-RestMethod -uri "https://clasd.freshdesk.com/api/v2/tickets?" -
ContentType application/json -Method Get -Body ($Body | ConvertTo-Json)
}
用于查看工单的 Freshdesk API 端点应返回类似于freshdesk 使用curl 提供的示例:
https://clasd.freshdesk.com/api/v2/tickets?email=[requester_email]
更新 如果我使用以下内容:
Invoke-RestMethod -uri
"https://clasd.freshdesk.com/api/v2/tickets?
email=xyz@clasd.net" -Headers $FDHeaders -ContentType
application/json -Method Get
我收到了想要的结果。我可以将 Invoke 命令的结果输出到对用户更易读的东西吗?