Salesforce integration

Hello, i would like to Add/update attribute values based on some filters from salesforce to database.
For example when a lead on Salesforce has his status changed from “Assigned” to "Ghosted it should be changed also in the database.
This is possible with the Salesforce node right?

Hey @Gabriele_Bracciali,

We don’t have a Salesforce trigger so you would need to manually build out a process to handle fetching the data you are after. Looking at the node there is an option to Get All Leads and apply a filter to it so you could fetch all leads that have a “ghosted” status then create / update a record in a database.

It has been many years since I have seen Salesforce but from what I remember you may be able to use an apex trigger to post to a webhook on a status change as well.

hey @Jon , thanks for helping me
okay yes, i will use the option get all, with the filter and after i will send to database.

And sorry for the question, but what is an apex trigger?

Hey @Gabriele_Bracciali,

An Apex trigger is a salesforce action that can run when an event occurs (Salesforce Developers) you can use them to perform an action like call a webhook when something happens.