function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SV 9SV 9 

Process builder for Rest @httppost

Can we build process builder to accept Rest @httppost and create records in the object? If  this is possible, how can this be achieved?
AbhishekAbhishek (Salesforce Developers) 
Hi,

If you want to make a callout from the process builder then you need to create an apex class with an invocable method and future method.
Call the invocable method from process builder and from the invocable method call the @future method and write your callout logic there in the @future method.

I hope you find the above solution helpful. If it does, please mark as Best Answer to help others too.

Thanks.