Salesforce Certified OmniStudio Developer — Question 55
A developer is configuring the API URL in an HTTP Action element within an Integration Procedure.
What is the merge code syntax for passing a Date node from an element named SetValues in the URL?
Answer options
- A. %SetValues:Date%
- B. ['SetValues']['Date']
- C. %SetValues.Date%
- D. {{SetValues.Date}}
Correct answer: A
Explanation
The correct answer is A, as it uses the proper merge code syntax for passing a Date node in the specified format. Options B and D use incorrect syntax for accessing the Date node, while option C uses a dot notation instead of the required colon syntax.