Blogs

  • Vote Article as Guest/Unauthenticated User in Salesforce Community

    INTRODUCTION How can We enable article voting for the guest users without prompting them to login. Salesforce lets guest users vote their own article without logging in. SOLUTION To allow guest users to like or dislike articles in Salesforce, you can follow these steps: Here’s an example of how the code: LWC: LWC JS Controller…

    Read more…

  • Not Able to upload File under task in Salesforce Mobile App

    You can not upload file under Task using related list in Salesforce Mobile App. This is Salesforce feature limitation in mobile app. We can add File button on task layout that will give option to upload file on Task level. And related uploaded files will appear in related list.

    Read more…

  • Using cURL in apex to retrieve the records in Salesforce

    To retrieve records in Salesforce using a curl request in Apex, you would need to make use of Salesforce’s REST API. Assuming you are well aware of HTTP requests, REST Api and cURL; Here’s an example of how you can construct a curl request in Apex to retrieve records: In this example, we are constructing…

    Read more…