Using Images in LiveMessage
Click Image Icon. To send images to the customer, use Attach Image. To get images from the customer, use Request Image.
With custom component, we can enable and disable buttons in Flow. Sample Flow: Screen - First and Last Name:We get the First and Last name from the user. Assignment - ....
HTML: <template> <lightning-datatable key-field="Id" data={contacts} columns={columns} hide-checkbox-column="true" show-row-number-column="true" onrowaction={handleRowAction}> </lightning-datatable> </template> JavaScript: import { LightningElement, api, track } from 'lwc'; import { NavigationMixin ....
Sample code: HTML: <template> <div class="slds-box slds-theme_default"> <table class="slds-table slds-table_cell-buffer slds-table_bordered slds-table_col-bordered"> <thead> <tr> <th scope="col"> <div class="slds-truncate" title="Account Name">Name</div> </th> <th class="" scope="col"> <div class="slds-truncate" title="Account Industry">Industry</div> </th> <th ....
Sample Code: XmlStreamWriter w = new XmlStreamWriter();w.writeStartDocument( null, '1.0' );w.writeStartElement( null, 'test', null );w.writeStartElement( null, 'example', null );w.writeAttribute( null, null, 'email', '[email protected]' );w.writeCharacters( 'sample' );w.writeEndElement();w.writeEndElement();w.writeEndDocument();String payload = w.getXmlString();system.debug( 'Payload is ....
By default, in Salesforce, the Chat API returns queue position information that we can relay to customers. However, we can also retrieve/receive the estimated wait time. Sometimes, the estimated wait ....
Salesforce Flows can be invoked from REST API. Flow API Name should be used in the end point /services/data/vxx.0/actions/custom/flow/Flow_API_Name to call it. Check the following example: Sample Flow: Flow Input Variable: Flow Output ....
Use Case: Send Email to Account Owner every hour until the Account Type is Prospecting. Custom Field: Process Builder: Object Criteria: Send Email True Criteria: When Account type is Prospect ....
1. Knowledge Article Actions in Classic Vs. Lightning Lightning Knowledge uses user profile permissions or permissions sets to give agents access to authoring actions. In contrast, Knowledge in Salesforce Classic ....
If Salesforce creates, updates, or deletes data in your org and then accesses external data in the same transaction, an error occurs. In your flow, we recommend using a separate ....