Salesforce REST API
Video thumbnail for Create record using Salesforce REST API with Record Type Name
Create record using Salesforce REST API with Record Type Name

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2022/09/create-record-using-salesforce-rest-api-with-record-type-name-in-the-payload.html

Video thumbnail for Create Salesforce Files using REST API
Create Salesforce Files using REST API

infallibletechie.com

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

Video thumbnail for Salesforce BULK API V1 Query request from PostMan
Salesforce BULK API V1 Query request from PostMan

infallibletechie.com

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

Video thumbnail for Salesforce Platform Events to Amazon EventBridge
Salesforce Platform Events to Amazon EventBridge

infallibletechie.com

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

Video thumbnail for Initiate and send Salesforce Chat Message using REST API
Initiate and send Salesforce Chat Message using REST API

infallibletechie.com

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

Video thumbnail for Salesforce BULK API V1 Hard Delete request from PostMan
Salesforce BULK API V1 Hard Delete request from PostMan

infallibletechie.com

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

Video thumbnail for Download Salesforce Event Log File using REST API
Download Salesforce Event Log File using REST API

infallibletechie.com

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

Video thumbnail for Conversation Entries for Messaging Session in Salesforce Messaging for In App and Web
Conversation Entries for Messaging Session in Salesforce Messaging for In App and Web

infallibletechie.com

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

Video thumbnail for Find Salesforce Storage Usage using REST API
Find Salesforce Storage Usage using REST API

infallibletechie.com

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

Video thumbnail for Find number of records in each Salesforce Object using REST API
Find number of records in each Salesforce Object using REST API

infallibletechie.com

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

Video thumbnail for Upsert records using External Id in Salesforce REST API
Upsert records using External Id in Salesforce REST API

infallibletechie.com

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

Video thumbnail for Handle multiple HTTP Methods in the same Salesforce REST Apex class
Handle multiple HTTP Methods in the same Salesforce REST Apex class

infallibletechie.com

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

Video thumbnail for Handle Salesforce SOQL Offset Limitation
Handle Salesforce SOQL Offset Limitation

infallibletechie.com

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

Video thumbnail for HTTP Status Code for Salesforce Apex REST API
HTTP Status Code for Salesforce Apex REST API

infallibletechie.com

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

Video thumbnail for Salesforce OAuth 2 0 Client Credentials Flow to get Access Token
Salesforce OAuth 2 0 Client Credentials Flow to get Access Token

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2024/01/salesforce-oauth-2-0-client-credentials-flow-to-get-access-token.html

Video thumbnail for Fetch Case record using Salesforce REST API
Fetch Case record using Salesforce REST API

infallibletechie.com

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

Video thumbnail for Create Lead record using Salesforce REST API
Create Lead record using Salesforce REST API

infallibletechie.com

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

Video thumbnail for Generate Salesforce refresh token
Generate Salesforce refresh token

infallibletechie.com

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

Video thumbnail for Invoke Salesforce Prompt Template using REST API
Invoke Salesforce Prompt Template using REST API

infallibletechie.com

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

Video thumbnail for Invoke Salesforce Prompt Template using REST API
Invoke Salesforce Prompt Template using REST API

infallibletechie.com

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

Video thumbnail for Invoke Salesforce Prompt Template using REST API
Invoke Salesforce Prompt Template using REST API

infallibletechie.com

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

Video thumbnail for Salesforce Messaging for Web API Retrieve Conversation Transcript
Salesforce Messaging for Web API Retrieve Conversation Transcript

infallibletechie.com

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

Video thumbnail for Salesforce Agent API from Lightning Web Component
Salesforce Agent API from Lightning Web Component

infallibletechie.com

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

Video thumbnail for Activate or Deactivate Salesforce Agentforce Agent using REST API
Activate or Deactivate Salesforce Agentforce Agent using REST API

infallibletechie.com

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

Video thumbnail for Deploy Metadata Using Salesforce Metadata API
Deploy Metadata Using Salesforce Metadata API

infallibletechie.com

Blog Post: https://www.infallibletechie.com/2025/12/deploy-metadata-using-salesforce-metadata-api.html