Flow Set Run Summary
The Flow Set Run Summary service provides summary file for the flow set run in Oracle Utilities Testing Accelerator.
Endpoint
>/rest/summary/report
 
Curl Command for Flow Set Run Summary
curl -X POST \
'https://<hostname>:<port>/rest/summary/report?type=flowset&flowSetName=x' \
-H 'accept: application/xml' \
-H 'authorization:Basic <Base64 encoded username & password>' \
-H 'content-type: application/json' \
-d '["<flow execution id>"]'
 
Parameters
<hostname>: Oracle Utilities Testing Accelerator application host name
<port>: Oracle Utilities Testing Accelerator application port
< token>: Authentication token from the steps mentioned in pre-requisites above
<flow execution id>: Flow execution ID of the flow set for which the summary is being requested
Example
Flowset Run Summary
curl -X POST \
'https://<hostname>:<port>/rest/summary/report?type=flowset&flowSetName=x' \
-H 'accept: application/xml' \
-H 'authorization: Basic <Base64 encoded username & password>' \
-H 'content-type: application/json' \
-d '["2507"]'
The server responds with a HTML summary file of the flow set as response.