• Jose Da Silva
  • NEWBIE
  • 10 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
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):
 
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
Hi, I'm trying to make a REST API call at:

https://....salesforce.com/services/apexrest/...

but I'm getting this error:

{'message': 'You do not have access to the Apex class named: OutboundInterfaceRunRestService', 'errorCode': 'FORBIDDEN'}

It works if I use an admin user, but not with another user. What permissions should I give this user?
 
Hi, I'm trying to make a REST API call at:

https://....salesforce.com/services/apexrest/...

but I'm getting this error:

{'message': 'You do not have access to the Apex class named: OutboundInterfaceRunRestService', 'errorCode': 'FORBIDDEN'}

It works if I use an admin user, but not with another user. What permissions should I give this user?