forked from cmo/triple-tools
27 lines
711 B
Text
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"
|