find-things/recipes/curate.txt
2025-11-27 21:41:55 +01:00

27 lines
711 B
Text

#
# list inboxes
#
export CURATOR_TOKEN=xxxxxxxx
python -m search.auto_curate https://pool.psychoinformatics.de/api protected --list-zones
#
# list incoming records for incoming label: <label>
#
export CURATOR_TOKEN=xxxxxxxx
python -m search.delete_incoming https://pool.psychoinformatics.de/api protected <label> --list-records
#
# remove all incoming records from incoming label: <label>
#
export CURATOR_TOKEN=xxxxxxxx
python -m search.delete_incoming https://pool.psychoinformatics.de/api protected <label>
#
# remove record with pid <pid>
#
export CURATOR_TOKEN=xxxxxxxx
curl -X DELETE https://pool.psychoinformatics.de/api/protected/curated/record?pid=<pid> -H "x-dumpthings-token: $CURATOR_TOKEN"