Salesforce Messaging for In-App and Web REST API
Configurations in Salesforce for Messaging for In-App and Web REST API: 1. Create a Messaging Channel of type "Messaging for In-App and Web". 2. Activate the Messaging Channel. 3. Create ....
Configurations in Salesforce for Messaging for In-App and Web REST API: 1. Create a Messaging Channel of type "Messaging for In-App and Web". 2. Activate the Messaging Channel. 3. Create ....
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 ....
JSON.deserialize() can be used in Salesforce Apex to parse Array payload in Apex REST API. Please check the following Apex Class for reference. Sample Apex Class: @RestResource( urlMapping='/ApexRESTAPI/' ) global ....
Connect API can be used to fetch the Conversation Entries for Salesforce Enhanced Channels. 1. Use the following SOQL to fetch the ConversationId and the Conversation Identifier of the Messaging ....
We can upsert(Insert/Update) records using External Id field in Salesforce. 1. Use the following link to setup Connected App to get Access Token. https://www.infallibletechie.com/2024/01/salesforce-oauth-2-0-client-credentials-flow-to-get-access-token.html 2. We can do a PATCH ....
1. Create a Connected App in Salesforce Setup under App Manager. Make sure "Enable Client Credentials Flow" is enabled on the Connected App. Callback URL can be https://{Your Salesforce Domain}.my.salesforce.com/services/oauth2/callback. ....
Connect API can be used to get Conversation Entries for a Messaging Session record in Salesforce Messaging for In-App and Web. 1. Use the following SOQL to fetch the Conversation Identifier ....
We can download Salesforce Event Log Files using the REST API. First, we have to create a Connected App in Salesforce since we are going to use the REST API. ....
We can insert Lead record using standard Salesforce REST API. By doing a POST request to https://{Your Domain}.my.salesforce.com/services/data/v58.0/sobjects/Lead/, we can easily insert Salesforce Lead record with Session Id. Check the following ....
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. 1. Create a Connected App in Salesforce. Callback URL should be https://{Your Domain}.my.salesforce.com/services/oauth2/callback Example: ....