FDMEE Rest API establish connection error
Hello there!
We have FDM (on-prem) batch rules running via rest API but suddenly could no longer establish connection and encountered "Authorization Header missing" error.
How to troubleshoot this type of error? we tried to run postman and failed to send a request.
Is there other way to check if the link /aif/rest/v1/jobs is active?
here is the snippet of the PowerShell script. Note that there are no changes with the code (for years) except for the quarterly password change.
#HTTP Basic Authorization. Contains encrypted username and password.
$headers = @{Authorization = 'Basic #########';}
#set parameter values
$jobName = $args[0]
0