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?
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?
In an Integration Procedure, the merge code syntax for passing a value in the URL typically involves double curly braces. The correct format to access the value of a node named Date under an element named SetValues is {{SetValues.Date}}. This ensures the value is dynamically merged into the URL.
What is the correct answer, the ExamTopics answer or the answers below? Why am I paying to still not know what is the correct answer?
Answer must be A
The merge code syntax for passing a Date node from an element named SetValues in the URL is: D. {{SetValues.Date}} The merge code syntax in Integration Procedures uses double curly braces to indicate that a value should be merged into the URL, request body, or headers. The syntax to access the value of a node named "Date" under an element named "SetValues" is "{{SetValues.Date}}". Option A ("%SetValues:Date%") and Option C ("%SetValues.Date%") are not the correct syntax for accessing the value of a node in an Integration Procedure. Option B (['SetValues']['Date']) is not the correct syntax for merge codes in an Integration Procedure. It is the syntax for accessing values in JSON or JavaScript objects, but not in merge codes.
Option A is correct answer
. vs :
A IS THE RIGHT ANSWER