is there any way to pull custom fields from the API as seen below the field is set however not available via the API
Code:
$request = Invoke-WebRequest -Uri "https://CLIENT.servicedesk.comodo.com/clientapi/index.php?serviceName=viewticket" -Headers @{"Authorization" = "APIKEYHERE"; } -ContentType "application/json" -Method Post -Body "{`"ticketId`": `"228`"}" $ticket = $($Request.Content | ConvertFrom-Json).data $ticket
Comment