
Create record using Salesforce REST API with Record Type Name
Blog Post: https://www.infallibletechie.com/2022/09/create-record-using-salesforce-rest-api-with-record-type-name-in-the-payload.html

Create Salesforce Files using REST API
Blog Post: https://www.infallibletechie.com/2022/11/how-to-create-files-in-salesforce-using-rest-api.html

Salesforce BULK API V1 Query request from PostMan
Using PostMan client, we can make Salesforce Bulk API V1 create job, create batch, check batch status, close job and check job status requests. Blog Post: https://www.infallibletechie.com/2023/02/how-to-make-salesforce-bulk-api-v1-query-request-from-pos

Salesforce Platform Events to Amazon EventBridge
Event Relay can be used to send Salesforce Platform Events to Amazon EventBridge. Blog Post: https://www.infallibletechie.com/2023/02/how-to-send-salesforce-platform-events-to-amazon-eventbridge.html

Initiate and send Salesforce Chat Message using REST API
Salesforce Chat REST API can be used to initiate a Chat, send message and also end the chat. "Chat API Endpoint" in Salesforce Setup should be used to make the REST API Requests. Blog Post: https://www.infallibletechie.com/2023/03/how-to-initiate-and-sen

Salesforce BULK API V1 Hard Delete request from PostMan
The User needs "Bulk API Hard Delete" Permission to make Salesforce BULK API V1 Hard Delete request. Blog Post: https://www.infallibletechie.com/2023/05/how-to-make-salesforce-bulk-api-v1-hard-delete-request-from-postman.html

Download Salesforce Event Log File using REST API
We can download Salesforce Event Log Files using the REST API. Blog Post: https://www.infallibletechie.com/2023/07/how-to-download-salesforce-event-log-file-using-rest-api.html

Conversation Entries for Messaging Session in Salesforce Messaging for In App and Web
Connect API can be used to get Conversation Entries for a Messaging Session record in Salesforce Messaging for In-App and Web. Blog Post: https://www.infallibletechie.com/2023/09/how-to-get-conversation-entries-for-messaging-session-in-salesforce-messagi

Find Salesforce Storage Usage using REST API
GET Request to https://{YOUR_DOMAIN_URL}/services/data/v56.0/limits/ can be used to find Salesforce Storage Usage using REST API. Blog Post: https://www.infallibletechie.com/2023/01/how-to-find-salesforce-storage-usage-using-rest-api.html

Find number of records in each Salesforce Object using REST API
https://{Your_Domain_URL}/services/data/v56.0/limits/recordCount can be used to find the number of records in each Salesforce Object using REST API. Blog Post: https://www.infallibletechie.com/2023/05/how-to-find-number-of-records-in-each-salesforce-obje

Upsert records using External Id in Salesforce REST API
We can upsert(Insert/Update) records using External Id field in Salesforce. Blog Post: https://www.infallibletechie.com/2024/01/how-to-upsert-records-using-external-id-in-salesforce-rest-api.html

Handle multiple HTTP Methods in the same Salesforce REST Apex class
Use * in the urlMapping so that we can make use of different paths to handle multiple HTTP Methods in the same Salesforce REST Apex class. Blog Post: https://www.infallibletechie.com/2024/06/how-to-handle-multiple-http-methods-in-the-same-salesforce-rest

Handle Salesforce SOQL Offset Limitation
In Salesforce SOQL, we cannot set the Offset value more than 2000. In order to overcome the Offset limitation, we can avoid using it and order the records based on the Id using ORDER BY Clause in the SOQL and retrieve them by filtering in subsequent requ

HTTP Status Code for Salesforce Apex REST API
RestContext.response.statusCode can be used to set HTTP Status Code for Salesforce Apex REST API. Blog Post: https://www.infallibletechie.com/2024/06/how-to-set-http-status-code-for-salesforce-apex-rest-api.html

Salesforce OAuth 2 0 Client Credentials Flow to get Access Token
Blog Post: https://www.infallibletechie.com/2024/01/salesforce-oauth-2-0-client-credentials-flow-to-get-access-token.html

Fetch Case record using Salesforce REST API
We can make a GET Request to https://{Your_Domain_URL}/services/data/v57.0/sobjects/case/{Case_Record_Id} using Access Token to fetch Salesforce Case record. Blog Post: https://www.infallibletechie.com/2023/05/how-to-fetch-case-record-using-salesforce-re

Create Lead record using Salesforce REST API
We can insert Lead record using Salesforce REST API. Blog Post: https://www.infallibletechie.com/2023/07/how-to-create-lead-record-using-salesforce-rest-api.html

Generate Salesforce refresh token
In order to generate the Salesforce refresh_token(refresh token), we have to first generate the Authorization Code. Using the Authorization Code, we can make subsequent POST request to get the Salesforce refresh token. Blog Post: https://www.infalliblete

Invoke Salesforce Prompt Template using REST API
To invoke the Salesforce Prompt Templates using REST API, we have to make use of Salesforce standard REST API endpoint available. Blog Post: https://www.infallibletechie.com/2025/02/invoke-salesforce-prompt-template-using-rest-api.html

Invoke Salesforce Prompt Template using REST API
To invoke the Salesforce Prompt Templates using REST API, we have to make use of Salesforce standard REST API endpoint available. Blog Post: https://www.infallibletechie.com/2025/02/invoke-salesforce-prompt-template-using-rest-api.html

Invoke Salesforce Prompt Template using REST API
To invoke the Salesforce Prompt Templates using REST API, we have to make use of Salesforce standard REST API endpoint available. Blog Post: https://www.infallibletechie.com/2025/02/invoke-salesforce-prompt-template-using-rest-api.html

Salesforce Messaging for Web API Retrieve Conversation Transcript
The Salesforce Messaging for Web REST API offers an endpoint that allows us to export or download the conversation transcript. To do so, you need to provide the Conversation ID and include the Authorization header with the Bearer followed by the access to

Salesforce Agent API from Lightning Web Component
We can securely and seamlessly access the Salesforce Agent APIs from Lightning Web Component using Apex. Blog Post: https://www.infallibletechie.com/2025/02/salesforce-agent-api-from-lightning-web-component.html

Activate or Deactivate Salesforce Agentforce Agent using REST API
Managing your Salesforce agents just got a whole lot easier. Whether you're scaling operations or temporarily pausing access, you can now activate or deactivate Agentforce Agents seamlessly using a RESTful API call. No more navigating complex UI steps — j

Deploy Metadata Using Salesforce Metadata API
Blog Post: https://www.infallibletechie.com/2025/12/deploy-metadata-using-salesforce-metadata-api.html