
Create record using Salesforce REST API with Record Type Nam...
11K views · Oct 19, 2022 infallibletechie.com
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
10K views · Nov 14, 2022 infallibletechie.com
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
3K views · Feb 6, 2023 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-postman.html

Salesforce Platform Events to Amazon EventBridge
3K views · Feb 15, 2023 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

Initiate and send Salesforce Chat Message using REST API
12K views · Mar 13, 2023 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-send-salesforce-chat-message-using-rest-api.html

Salesforce BULK API V1 Hard Delete request from PostMan
9K views · May 24, 2023 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

Download Salesforce Event Log File using REST API
1K views · Jul 20, 2023 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

Conversation Entries for Messaging Session in Salesforce Mes...
3K views · Oct 4, 2023 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-messaging-for-in-app-and-web.html

Find Salesforce Storage Usage using REST API
461 views · Mar 10, 2024 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

Find number of records in each Salesforce Object using REST ...
2K views · May 13, 2024 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-object-using-rest-api.html

Upsert records using External Id in Salesforce REST API
1K views · Jun 7, 2024 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

Handle multiple HTTP Methods in the same Salesforce REST Ape...
576 views · Jun 13, 2024 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-apex-class.html

Handle Salesforce SOQL Offset Limitation
164 views · Jun 13, 2024 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 requests. Blog Post: https://www.infallibletechie.com/2024/06/handle-salesforce-soql-offset-limitation.html

HTTP Status Code for Salesforce Apex REST API
335 views · Jun 18, 2024 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

Salesforce OAuth 2 0 Client Credentials Flow to get Access T...
2K views · Jun 21, 2024 infallibletechie.com
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
1K views · Jun 26, 2024 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-rest-api.html

Create Lead record using Salesforce REST API
999 views · Oct 10, 2024 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

Generate Salesforce refresh token
487 views · Oct 18, 2024 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.infallibletechie.com/2024/10/generate-salesforce-refresh_token.html

Invoke Salesforce Prompt Template using REST API
651 views · Feb 4, 2025 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

Invoke Salesforce Prompt Template using REST API
651 views · Feb 4, 2025 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

Invoke Salesforce Prompt Template using REST API
651 views · Feb 4, 2025 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

Salesforce Messaging for Web API Retrieve Conversation Trans...
1K views · Feb 19, 2025 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 token. This is necessary for a successful GET request to retrieve the Conversation Transcript. Blog Post: https://www.infallibletechie.com/2025/02/salesforce-retrieve-conversation-transcript-messaging-for-web-api.html

Salesforce Agent API from Lightning Web Component
2K views · Feb 24, 2025 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