If you need to automate such query you might find using the REST API server useful as well - there /api/v3/jobs endpoint can be used to retrieve such jobs.
curl -X 'GET' \
'https://{yourserverurl}/api/v3/jobs?query=type%3D%3D%22FTP_JOB%22%3BstartDateTime%3E2024-02-26T21%3A00%3A00.000Z%3BstartDateTime%3C2024-02-26T22%3A00%3A00.000Z&size=100&offset=0' \
-H 'accept: application/json'
Query being:
type=="FTP_JOB";startDateTime>2024-02-26T21:00:00.000Z;startDateTime<2024-02-26T22:00:00.000Z
(need to be altered for your time)