Salesforce Certified OmniStudio Developer — Question 11
An Integration Procedure uses an HTTP action to make a REST API call. The response from the REST API must be converted into a specific XML structure before sending it as an input to another external web service.
How should the developer configure the Integration Procedure to meet this requirement?
Answer options
- A. Use a DataRaptor Transform to convert JSON to XML
- B. Use a Remote Action that calls the XMLStreamReader class
- C. Use a DataRaptor Extract and check the XML checkbox on the Output JSON Path
- D. Use a Remote Action that calls the XMLStreamWriter class
Correct answer: A
Explanation
The correct answer is A because a DataRaptor Transform is specifically designed to convert data formats, including from JSON to XML. The other options do not provide a direct method to achieve the required transformation, as using XMLStreamReader or XMLStreamWriter does not inherently convert JSON to XML or is not applicable in this context.