Not found message when using id

This is probably a simple, stupid question, but I have not been successful. I’m trying to use the api to look at the queue, get the id and put that id in to delete the entry in the queue.
I’m running this:
http://192.168.1.10:8989/api/v3/queue?apikey=1cb4a96c17ab40158f5f5a4a56030ced
taking the id and putting it in this:
http://192.168.1.10:8989/api/v3/queue/{d from above}?removeFromClient=true&blocklist=true&skipRedownload=false&apikey=1cb4a96c17ab40158f5f5a4a56030ced
This is my result:
{
“message”: “NotFound”
}
What am I doing wrong?

OK, I actually hit F12 on the browser, marked a download as failed, found the entry for the api call, replaced the id in the url, added my api key and ran it on the browser and still got a not found.
2023-10-05 20:23:03.8|Debug|Api|[GET] /api/v3/log/file: 200.OK (5 ms)
2023-10-05 20:23:11.6|Trace|Http|Req: 1001 [GET] /api/v3/queue/1586675661?removeFromClient=true&blocklist=true&apikey=(removed) (from 192.168.5.146 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36)
2023-10-05 20:23:11.6|Trace|Http|Res: 1001 [GET] /api/v3/queue/1586675661?removeFromClient=true&blocklist=true&apikey=(removed) 404.NotFound (1 ms)
2023-10-05 20:23:11.6|Debug|Api|[GET] /api/v3/queue/1586675661?removeFromClient=true&blocklist=true&apikey=(removed) 404.NotFound (1 ms)

I figured it out. You can’t just put it in the browser. You have to have it formatted as an HTTP DELETE request. I’m new to this, but maybe this will help someone else who runs into the same issue.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.