Description
Returns an Entity from an EntityCollection.
Signature
FindECRecord('entitycollection', 'index')
Example
FindECRecord(GetVar('MatchedLead'), 0)
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| inputstring | xxxx | xxxx | xxxx |
| stringtobereplaced | xxxx | xxxx | xxxx |
| replacementstring | xxxx | xxxx | xxxx |

/* Get value of Subject attribute from first Lead record in entity collection called 'MatchedLead' */ SetVar('varLeadSubject', FindRecordValue( FindECRecord(GetVar('MatchedLead'), 0) ,'subject' ,'* No subject was set *' ) )