Evaluation group
This method allows inserting evaluation groups through a REST API.
POST /apigateway/se/rest/v1/inspection/evaluation-group
Request example:
Request body parameter | Type | Required | Description |
---|---|---|---|
nmEvalConfGrup | String | Yes | Name |
nrEvalPeriod | Numeric | Yes | Evaluation interval: Between 1 and 999 |
fgEvalInterval | Numeric | Yes | Unit: 1 - Day(s) 2 - Week(s) 3 - Month(s) |
nrAcumPeriod | Numeric | Yes | Cumulative date range Between 1 and 999 |
fgAcumInterval | Numeric | Yes | Unit: 1 - Day(s) 2 - Week(s) 3 - Month(s) |
cdTeam | String | No | Responsible team ID # |
Request example:
{
"nmEvalConfGrup": "string",
"nrEvalPeriod": 15,
"fgEvalInterval": 1,
"nrAcumPeriod": 2,
"fgAcumInterval": 3,
"cdTeam": "string"
}
Response example:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}