Method findDealsValue — Returns the total deal’s value for a Lead, Contact or Account. Description This method is used to calculate Deals total value for a Lead, Contact, Account on a certain stage/pipeline. Minimum number of arguments for this method is four. Structure of the method: findDealsValue ('entity name', 'stage', 'pipeline', entity id) Parameters entity […]
Read More
Method extractWebsiteLinks — Extracts website links from a text. Description This method is used to extract website links from a given text. If one or more links are found inside a text it will extract a collection of links. Minimum number of arguments for this method is one. Structure of the method: extractWebsiteLinks(text) Parameters text— […]
Read More
Method extractPhoneNumbers — Extracts phone numbers from a text. Description This method is used to extract phone numbers from a given text. If one or more phone numbers are found inside a text it will extract a collection of phone numbers. Minimum number of arguments for this method is one. Structure of the method: extractPhoneNumbers(text) […]
Read More
Method extractEmails — Extracts email addresses from a text. Description This method is used to extract email addresses from a given text. If one or more email addresses are found inside a text it will extract a collection of email addresses. Minimum number of arguments for this method is one. Structure of the method: extractEmails(text) […]
Read More
Method addAttachments — Shows all the attachments added to an entity. Description This method is used to display all the attachments that are uploaded for an entity like a lead or a contact or a deal. Its usage varies depending on different scenarios. Minimum number of arguments for this method is two. Structure of the […]
Read More
Method dump— Prints information in a human-readable format about a variable. Description This method displays information about a variable in a way that is easier to read by humans. This is used mainly to debug variable values and print objects arrays or strings. Minimum number of arguments for this method is one. Structure of the method: dump(variable) Parameters […]
Read More
Method md5— Is a hash function that produces 128-bit hash value and implements the MD5 algorithm. Description A hash function is any function that can be used to map data of different size into a fixed sized data. The returned value is called hashed value that is typically represented as a sequence of 32 hexadecimal […]
Read More
Method urlEncode — URL – encodes a string Description This method is useful when encoding a string that can be used in a query part of a URL. After encoding all non-Alphanumeric characters will be replaced with a % sign except the -_. characters followed by two hexadecimal digits. The space will be replaced with + sign. […]
Read More
Method base64decode—Decodes the given data from base64. Description This method decodes Base64-encoded data into the original string. Minimum number of arguments for this method is one. Structure of the method: base64decode(base64value) Parameters base64value— is the data we want to decode from base64 Examples In the example below, we decode a string from base64. {% set […]
Read More
Method base64encode—Encodes the given data with base64. Description This encoding is a group of similar encoding binary to text that represents binary data in an ASCII format and is designed to make binary data survive transport through transport layers that are not 8-bit clean. Each base64 digit represents exactly 6 bits of data. Three 8-bit bytes […]
Read More