Command-line utility to delete Inspire Evolve Front Office tickets.
cd "evolve-toolkit"
python3 -m pip install -r requirements.txtCopy config.example.yml to config.yml and update the values:
environment:
apiKey: "YOUR_API_KEY_HERE"
cloudUrl: "https://your-cloud-url"apiKeyis your API bearer token.cloudUrlis the base URL for the Evolve Front Office API.- Ticket selection is controlled with command-line options only.
Delete tickets for a specific user:
python3 ticket_cleaner.py --user username@quadient.comDelete tickets for all users:
python3 ticket_cleaner.py --allDry run without deleting anything:
python3 ticket_cleaner.py --user username@quadient.com --dry-runSkip confirmation prompts:
python3 ticket_cleaner.py --all --yes