An errant process has dumped thousands of file into an FTP site with an FTP watcher on it. I now have thousands of jobs backed up in the queue with necessary jobs mixed in. I need to clear just the bad jobs from the queue and I need to do so without clicking through hundreds of pages and checking boxes. Please help.
Solved
How do I selectively clear job queue.

Best answer by david_r
The easiest is probably to chain together some HTTPCallers and Testers and delete them using the REST API.
Since it's probably (hopefully) a one-off, you can simplify it by hard-coding the token in the headers.
To get a list of all the queued jobs with their detailed information:
GET /fmerest/v3/transformations/jobs/queued?limit=-1&offset=-1
To delete a specific job ID:
DELETE /fmerest/v3/transformations/jobs/queued/{id}
More information here:
https://docs.safe.com/fme/html/FME_REST/apidoc/v3/index.html
Reply
Rich Text Editor, editor1
Editor toolbars
Press ALT 0 for help
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.