I am trying to see if we can pull a listing of all salesforce instances that have been deleted using their API the use of python.
The given underneath question returns all salesforce cases created, but I'm seeking to see how to retrieve all cases which have been deleted.
salesforce_cursor.bulk.Case.query('''SELECT Id FROM Case''')
I tried doing the underneath, but it returned no statistics whereas I recognize there are deleted cases
salesforce_cursor.bulk.Case.query('''SELECT Id FROM Case where isDeleted = true''')
0 Replies