Unable to Edit Messaging Channel in Salesforce Setup
1. Add "Messaging User" to the user's Permission Set License Assignments.2. Check whether the user has "Configure Messaging" permission via profile or permission set.
1. Add "Messaging User" to the user's Permission Set License Assignments.2. Check whether the user has "Configure Messaging" permission via profile or permission set.
Note:You need Digital Engagement Messaging License to do this.1. Open the Lead or Contact to whom the Images or Files should be sent.2. Click Start Conversation.3. Click "Attach a file" ....
In ConversationEntry entity, MessageStatusCode will be populated if the messages are undelivered. So, query the ConversationEntry entity with MessageStatusCode to track failed or undelivered Messages in Salesforce Messaging. SOQLs: SELECT ....
"This record doesn't have any associated Messaging Users. Ensure that any Messaging Users are set up properly and that they haven't opted out of Messaging" 1. Check whether the Agent ....
The benefit of the business hours in WhatsApp channel or other Messaging Channels is that, No Agent Dialog will be called from the Einstein BOT when the requests are made ....
Check this AppExchange Dashboard - https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000G0z5fUAB (Or) 1. Go to Company Information in Setup. 2. Navigate to the "Usage-based Entitlements". Check the below Entitlements. a. Maximum Billed Blast Conversations for ....
Files are stored in ContentDocument entity. Use this soql to find the ContentDocumentId. SELECT ContentDocumentId FROM ContentDocumentLink WHERE LinkedEntityId = '<MessagingSessionId>' Example: 1. Run the below SOQL.SELECT ContentDocumentId FROM ContentDocumentLink WHERE LinkedEntityId ....
1. Use Start Conversation button. 2. Send a message. You will see a banner like below. When the customer responds, it will send the message directly to the agent who initiated ....
1. Configure Error Handler Dialog. 2. Instead of Transfer to Agent use Show a Menu with Options. Add some user friendly message to the user. Output:
Sample Code:MessagingEndUser objMsgUser = new MessagingEndUser();objMsgUser.ContactId = '<ContactId>';objMsgUser.MessagingChannelId = '<Messaging Channel Id>';objMsgUser.MessagingConsentStatus = 'ImplicitlyOptedIn';objMsgUser.MessageType = 'Text';//For SMS Channel/*The phone number or Facebook page ID associated with this Messaging end user.*/objMsgUser.MessagingPlatformKey ....