What is written to the records.csv file when the flow executes?
Refer to the exhibits. What is written to the records.csv file when the flow executes?A . The JSON payloadB . An error messageC . NothingD . The payload convert to CVSView AnswerAnswer: A
What is the correct DataWeave expression for the Set Payload transformer to call the createCustomerObject flow with values for the first and last names of a new customer?
Refer to the exhibit. What is the correct DataWeave expression for the Set Payload transformer to call the createCustomerObject flow with values for the first and last names of a new customer?A . lookupC createCustomerObJect( "Alice", "Green- ) )B . createCustomerObject( { first: "Alice", last: "Green" > )C . lookupf...
What is the result at the end of the flow?
Refer to the exhibits. A web client submits a request to http://localhQst:8081 /flights . What is the result at the end of the flow?A . "string"B . "Java"C . "object"D . "XML"View AnswerAnswer: C
What path setting is required for an HTTP Listener endpoint to route all requests to an APIkit router?
What path setting is required for an HTTP Listener endpoint to route all requests to an APIkit router?A . /(*)B . /C . /()D . /*View AnswerAnswer: D
What payload is logged at the end of the main flow?
Refer to the exhibits . What payload is logged at the end of the main flow?A . [order1, order2, order3, order4]B . [1, 2, 3, 4]C . order4D . order1order2order3order4View AnswerAnswer: B
How many private flows does APIKIT generate from the RAML specification?
Refer to the exhibit. How many private flows does APIKIT generate from the RAML specification?A . 1B . 2C . 3D . 4View AnswerAnswer: D
How should the listener be configured so it retrieves new rows at most one time?
An On Table Row Database listener retrieves data from a table that contains record_id, an increasing numerical column. How should the listener be configured so it retrieves new rows at most one time?A . Set the target to store the last retrieved record_id valueB . Set the ObjectStore to store...
Refer to the exhibit.
Refer to the exhibit. What is the output payload in the On Complete phaseA . summary statistics with NO record dataB . The records processed by the last batch step: [StepTwol, StepTwo2, StepTwo3]C . The records processed by all batch steps: [StepTwostepOnel, stepTwostepOne2, StepTwoStepOne3]D . The original payload: [1,2,31View AnswerAnswer:...
What values are accessible in the child flow after a web client submits a request to http://localhost:8Q81/order? color=red?
Refer to the exhibit. The main flow contains a Flow Reference for the child flow. What values are accessible in the child flow after a web client submits a request to http://localhost:8Q81/order? color=red?A . payloadB . payload quantity varC . payload color query paramD . payload quantity var color query...
What is the correct syntax for a Logger component to output a message with the contents of a 3SON Object payload?
What is the correct syntax for a Logger component to output a message with the contents of a 3SON Object payload?A . The payload is: $(payload)B . #["The payload is: " ++ payload]C . The payload is: #[payload]D . #["The payload is: " + payload]View AnswerAnswer: B