Get output specs for ProcessAPI package
Each ProcessAPI package will have a unique set of output based on the user design. This function will return a JSON dummy output specification for the Process.
Get the output specifications for the supplied process_id, the actual results in the returned JSON are dummy values
GET
https://api.olisystems.com/process/outputspec/{{process_id}}
Headers
Name
Type
Description
Authorization*
String
Bearer {access_token}
{
"data": {
"context": "solution",
"flowsheetConvergence": true,
"metadata": {
"executionTime": {
"unit": "ms",
"value": 41.0
},
"versionInfo": {
"fullVersion": "11.5.1.7"
}
},
"output": {
"blockOutput": {
"Mix-1": {
...
}
...
}
"streamOutput": {
"S-1": {
...
},
...
}
}
},
"message": "Process output specification retrieved successfully",
"status": "SUCCESS"
}
Last updated
Was this helpful?