Hi @jcducom,
You can try:
cryosparcm icli
# to delete the job
db.jobs.update_one({'uid': 'J2', 'project_uid': 'P1'}, {'$set': {'deleted': True}})
# and if you would like to delete the project too
db.projects.update_one({'uid':'P75'}, {'$set': {'deleted':True}})
Hope this helps!