Summary
Evaluation
Description
Run a test evaluation
Route
POST /workflow_engine/runEvaluation
Roles
admin
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
operand_1 |
string |
yes |
- |
query |
string |
yes |
- |
operator |
string |
yes |
- |
operand_2 |
string |
yes |
- |
Copied to Clipboard
{
"operand_1": "cupidatat adipisicing nostrud esse consequat",
"query": "proident elit incididunt in ullamco",
"operator": "consectetur irure aute enim quis",
"operand_2": "consequat elit non fugiat"
}
Copied to Clipboard
{
"type": "object",
"properties": {
"operand_1": {
"type": "string"
},
"query": {
"type": "string"
},
"operator": {
"type": "string"
},
"operand_2": {
"type": "string"
}
},
"required": [
"operand_1",
"query",
"operator",
"operand_2"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
evaluation |
object |
Result of evaluation. |
Copied to Clipboard
{
"evaluation": true
}
Copied to Clipboard
{
"description": "Result of evaluation.",
"type": "object",
"properties": {
"evaluation": true
},
"required": [
"evaluation"
],
"additionalProperties": false
}