You need to sign in to do that
Don't have an account?
How to call an Apex method from a Custom Button? (Not Javascript Button)
I want to call an apex method from a custom Button (Url type button) with some merge fields.
With lightning rolling out, I dont want to use Javascript button anymore.
My Use-Case is to call an Apex static method which takes record id as parameter.
So, Please provide me any code sample or any pointers, I appreciate any help.
With lightning rolling out, I dont want to use Javascript button anymore.
My Use-Case is to call an Apex static method which takes record id as parameter.
Public static void methodToBeCalled(ID recordID) { //My Code Logic Here }From some blogs, I found that i can use REST APIs to do this, But no idea on how to implement it.
So, Please provide me any code sample or any pointers, I appreciate any help.
For making a REST API callout you would need a javascript button. URL hacking doesn't work in Lightning Experience either, as you can see in the documentation (https://help.salesforce.com/articleView?id=custom_links_constructing.htm&type=0).
My advice here is: create a custom button that redirects to a Visualforce page. In that visualforce page, create a confirmation button that calls your apex code.
Bear in mind you should specify the sObject you are using in the standardController parameter (I used Account as an example).
If your method is not performing DML, it is safe too to use the action attribute on page load (https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_page.htm). However, if your method is performing DML, don't use it, because you would be creating a CSRF vulnerability.
Regards.