Orchestrator API : download video records?

Hello,
I’m searching how to download video records for our unattended jobs with the orchestrator API,
I tried using ExecutionMedia but I don’t get any results

Do you know if the feature is available with the API or only using the Orchestrator web site?
(We are using a standalone 23.4 orchestrator)

@ybotquelen

Welcome to the community

Can you show the call details and body you made

Cheers

Hello, I use a java client generated by swagger code gen

I tried two things:

  • the download media with a specific job information

executionMediaApi.executionMediaDownloadMediaByJobId(job.getId(), job.getOrganizationUnitId());

  • another call to retrieve all the execution medias in the folder we execute the unattended jobs:

List videos = executionMediaApi.executionMediaGet(null, null, null, null, null, null, null, folderId).getValue();

Both calls return no result