Dynamic expressions in Master Data v2
Use dynamic expressions to add a document field value. For example, you can configure the client email to send marketing emails dynamically using triggers. See examples below of how you can set up your JSON schema.
Learn more about Master Data v2 schemas
- trigger JSON
_10 {_10 "action": {_10 "to": "{!email}"_10 }_10 }
- client document
_10 {_10 "email": "client@email.com"_10 }
Setting up dynamic expressions
Pattern:
{!fieldName}
Example:
{!email}
Access nested fields using a dot.
{!order.clientProfiledata.email}