An OmniScript displays data from an API using an Integration Procedure, but all of the data is missing. What two errors could cause this? (Choose two.)
An OmniScript displays data from an API using an Integration Procedure, but all of the data is missing. What two errors could cause this? (Choose two.)
There are two potential errors that could cause an OmniScript to display no data from an API using an Integration Procedure. First, the API URL might not be allowlisted in Salesforce, which would block any communication with the API. Second, if the JSON sent from the Integration Procedure Action does not match any of the Original Input for the Integration Procedure, the data retrieval process would fail, resulting in no data being displayed.
I would say A and B. A: On my Developer Org I needed to setup some remote settings in th ebeginning, to get the communication running. B: I would agree with the arguments below Not D: I would say, the Previe
Correct Answer AB
Both option B and D could cause the OmniScript to display no data from an API using an Integration Procedure. B. The JSON sent from the Integration Procedure Action does not match any of the Original Input for the Integration Procedure: If the JSON sent from the Integration Procedure Action does not match the Original Input for the Integration Procedure, the Integration Procedure will not be able to retrieve the correct data from the API. This will cause the OmniScript to display no data or incorrect data. D. The Integration Procedure Preview Input Parameters do not match the JSON sent from the OmniScript: If the Integration Procedure Preview Input Parameters do not match the JSON sent from the OmniScript, the Integration Procedure will not be able to retrieve the correct data from the API. This will cause the OmniScript to display no data or incorrect data.
A and D are the right choices. Explaination for D IS CORRECT. B is incorrect. JSON is sent from Omniscript to IP. Choice B states JSON sent from IP. OS calls IP, so ideally json from Omniscript MUST match the original JSON for IP.
Correct answer: AB. and can't be D, because 'Integration Procedure Preview Input Parameters, it is only used for testing purposes and does not impact the functionality of the Integration Procedure.
option A results in an error.
I would say A and B
BD Mismatched Element Names: The element name for the missing data does not match the JSON node key in the Integration Procedure Response1. Ensure that the element names in the OmniScript match the corresponding keys in the Integration Procedure’s response. Incorrect Preview Input Parameters: The Integration Procedure Preview Input Parameters do not match the JSON sent from the OmniScript1. Verify that the input parameters align correctly between the OmniScript and the Integration Procedure