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

Notifying salesforce changes to external system through rest api
Can some help me with the design to follow to notify salesforce changes to external rest api
If i create a new account in salesforce it should be notified to external system through rest api
which is the best way ? to use triggers or batch or any other ?
If i create a new account in salesforce it should be notified to external system through rest api
which is the best way ? to use triggers or batch or any other ?
You can make a call out to the external API in the Account trigger. However, keep an eye on the API callout limits ie, 100 per day.
As you may know, 2000 records is the maximum batch size. In that way you can move maximum total of 2lac records a day(considering the callout limit).
Please let me know if this was helpful.