LFS version compatibility: available with LFS v12.22 or later
If you've ever wanted to enhance the order payload sent to Limio Commerce via the Limio for Salesforce managed package by adding custom details, now there is a way to do so.
Currently, this feature is exclusively available in the Limio Acquisition Flow.
Within the Limio Order Summary component, situated on the last screen of the flow, a new attribute named "Input: Custom Fields" was introduced.
This attribute accepts a JSON string as input. The provided value is then parsed, integrated into the order payload, and transmitted to Limio. You can use a flow Formula resource to create the string.
Formula examples
Here is an example format you want to follow to populate custom fields property:
"{\"Custom_Field__c\": \"" & {!$User.FirstName} & {!$User.LastName} & "\"}"
If you will need to pass more than one field, you can add them separating with a comma:
"{\"Custom_Field_One__c\": \"" & {!$User.FirstName} & {!$User.LastName} & "\", \"Custom_Field_Two__c\": \"" & {!$User.FirstName} & {!$User.LastName} & "\" }"
Details are included in the customFields object at the top level of an order:
With Limio Commerce configured appropriately to support your custom properties, you can tailor the experience to better align with specific business requirements.
Comments
0 comments
Please sign in to leave a comment.