Hello,
we are using the /api/v2/recording/jobs to create a job, to delete recordings. We then want to run the job ASAP, but it can take some time for the job to go from PENDING state to READY, to be able to run it.
So it is not easily possible to create the job and immediately run it in one action. Is there any way, to run the job, when it goes to the READY state? I was also looking to the available notification topics, so we could run a Lambda based on the message sent to the EventBridge, but I didn't find any topic related to these jobs.
Is there any other way, how to approach it, or the most sufficient way would be to have some scheduled task, which will periodically check all the created jobs and run it if there is any in the READY state?
Thank you