You need to sign in to do that
Don't have an account?

Salesforce object is not accessible via API, but working via UI
I can access my object by Id via user interface by using URL like lightning/r/Account/0061n00000b5pEdAAI/view, but I'm not able to get it via API with same user(python):
And this happens not with all objects. Like every 3rd object is not available. I checked permissions and set access to all view like in this guide:
https://www.findmycrm.com/faq/crm-migration-faqs/how-can-i-get-access-to-all-objects-in-salesforce
Everything is set to View All already
sf_client.query_all(f"""SELECT Id, Name FROM Account where Id='0061n00000b5pEdAAI'""")
And this happens not with all objects. Like every 3rd object is not available. I checked permissions and set access to all view like in this guide:
https://www.findmycrm.com/faq/crm-migration-faqs/how-can-i-get-access-to-all-objects-in-salesforce
Everything is set to View All already
Do you see any error while trying to access via API? Thanks