I am getting my job using the api (it is a job i KNOW has a recording because I can see it in orchestrator), and the return object contains an “Id” which is a number that I am trying to use as the jobId in a GET with this URL:
{{cloudUrl}}/{{cloudOrg}}/{{cloudTenant}}/odata/ExecutionMedia/UiPath.Server.Configuration.OData.DownloadMediaByJobId(jobId=XXXXXXXX)
But no matter which job I seem to give, I get the same response:
{
“message”: “There is no execution media associated with the job.”,
“errorCode”: 2201,
“traceId”: “00-4623gx159e78be8d346kr01e6d9b9b4c-12346ea01fd0d1bc-00”
}
Am I getting the jobId from the wrong place? in the logs the jobId is a uuid so it doesnt work for getting the media because it expects a number, which is why I got the jobId by getting this job and using the Id field of the returned object. But it never finds the video… what can i do?