Hi, after going through all items in immich's duplicate finder - and archiving those items (393 in total) - I want to get a list of all archived items to further retrieve their original filepath.
I came up with the following curl-request; curl --location 'http://localhost:2283/api/search/metadata' --header 'Accept: application/json' --header 'Content-Type: application/json' --header 'x-api-key: <REDACTED>' --data '{ "isArchived": true }' -o "/usr/local/bin/immich/curl_result.json"
Parsing that file (curl_result.json) lists only 250 items (but there are 393 in archive), and includes also non-archived items.
Can you please tell me what I'm doing wrong? Thank you!