Salesforce REST API
'Video thumbnail for Create record using Salesforce REST API with Record Type Name'
play_arrow
4:20
Create record using Salesforce REST API with Record Type Nam...
Create record using Salesforce REST API with Record Type Name

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

'Video thumbnail for Create Salesforce Files using REST API'
play_arrow
9:07
Create Salesforce Files using REST API
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

'Video thumbnail for Salesforce BULK API V1 Query request from PostMan'
play_arrow
12:20
Salesforce BULK API V1 Query request from PostMan
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

'Video thumbnail for Salesforce Platform Events to Amazon EventBridge'
play_arrow
16:01
Salesforce Platform Events to Amazon EventBridge
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

'Video thumbnail for Initiate and send Salesforce Chat Message using REST API'
play_arrow
6:43
Initiate and send Salesforce Chat Message using REST API
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

'Video thumbnail for Salesforce BULK API V1 Hard Delete request from PostMan'
play_arrow
7:54
Salesforce BULK API V1 Hard Delete request from PostMan
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

'Video thumbnail for Download Salesforce Event Log File using REST API'
play_arrow
4:21
Download Salesforce Event Log File using REST API
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

'Video thumbnail for Conversation Entries for Messaging Session in Salesforce Messaging for In App and Web'
play_arrow
3:27
Conversation Entries for Messaging Session in Salesforce Mes...
Conversation Entries for Messaging Session in Salesforce Messaging for In App and Web

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

'Video thumbnail for Find Salesforce Storage Usage using REST API'
play_arrow
4:34
Find Salesforce Storage Usage using REST API
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

'Video thumbnail for Find number of records in each Salesforce Object using REST API'
play_arrow
3:32
Find number of records in each Salesforce Object using REST ...
Find number of records in each Salesforce Object using REST API

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

'Video thumbnail for Upsert records using External Id in Salesforce REST API'
play_arrow
3:23
Upsert records using External Id in Salesforce REST API
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

'Video thumbnail for Handle multiple HTTP Methods in the same Salesforce REST Apex class'
play_arrow
5:38
Handle multiple HTTP Methods in the same Salesforce REST Ape...
Handle multiple HTTP Methods in the same Salesforce REST Apex class

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

'Video thumbnail for Handle Salesforce SOQL Offset Limitation'
play_arrow
7:49
Handle Salesforce SOQL Offset Limitation
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

'Video thumbnail for HTTP Status Code for Salesforce Apex REST API'
play_arrow
3:14
HTTP Status Code for Salesforce Apex REST API
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

'Video thumbnail for Salesforce OAuth 2 0 Client Credentials Flow to get Access Token'
play_arrow
3:46
Salesforce OAuth 2 0 Client Credentials Flow to get Access T...
Salesforce OAuth 2 0 Client Credentials Flow to get Access Token

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

'Video thumbnail for Fetch Case record using Salesforce REST API'
play_arrow
3:44
Fetch Case record using Salesforce REST API
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

'Video thumbnail for Create Lead record using Salesforce REST API'
play_arrow
4:15
Create Lead record using Salesforce REST API
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

'Video thumbnail for Generate Salesforce refresh token'
play_arrow
4:24
Generate Salesforce refresh token
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

'Video thumbnail for Invoke Salesforce Prompt Template using REST API'
play_arrow
5:17
Invoke Salesforce Prompt Template using REST API
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

'Video thumbnail for Invoke Salesforce Prompt Template using REST API'
play_arrow
5:17
Invoke Salesforce Prompt Template using REST API
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

'Video thumbnail for Invoke Salesforce Prompt Template using REST API'
play_arrow
5:17
Invoke Salesforce Prompt Template using REST API
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

'Video thumbnail for Salesforce Messaging for Web API Retrieve Conversation Transcript'
play_arrow
8:48
Salesforce Messaging for Web API Retrieve Conversation Trans...
Salesforce Messaging for Web API Retrieve Conversation Transcript

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

'Video thumbnail for Salesforce Agent API from Lightning Web Component'
play_arrow
8:48
Salesforce Agent API from Lightning Web Component
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