Using Salesforce REST api in filament
Is there anybody here who has used Salesforce and their api for a filament project before? I want to use Sushi plugin for it as well but it requires a link to generate a model from static values but have no idea how to get that certain link from Salesforce or what to search to find how to get this link.
5 Replies
Introduction to REST API | REST API Developer Guide | Salesforce De...
REST API provides you with programmatic access to your data in Salesforce. The
flexibility and scalability of REST API make it an excellent choice for integrating Salesforce
into your applications and for performing complex operations on a large scale.
Basically Salesforce exposes endpoints to interact with their objects so you can just use the HTTP facade to connect to their endpoints and get the data. There is some authorization you’ll have to handle though.
And part of that auth will return you instance URLs you can use for further interactions with the service.
thanks for the info. Will try that right away
Also take a look at https://github.com/omniphx/forrest to see if it fits your needs and else maybe get some inspiration from.
GitHub
GitHub - omniphx/forrest: A Laravel library for Salesforce
A Laravel library for Salesforce. Contribute to omniphx/forrest development by creating an account on GitHub.
I saw this once but forgot it was a thing, thanks for bringing it up again