Rule Results
Return paginated rule results, optionally filtering by date and comparison field.
Filter results since this date (ISO 8601)
Field to compare 'since' against ('date' or 'updated_at')
Rule results response
Unauthorized
Forbidden
Internal Server Error
GET /api/rule_results HTTP/1.1
Accept: */*
{
"data": [
{
"id": 701,
"implementation_id": 10,
"inserted_at": "2026-03-30T06:37:42Z",
"result": 98,
"updated_at": "2026-03-30T06:37:42Z"
}
]
}Upload a CSV file with rule result records and process them into the system.
CSV file with rule results (columns: implementation_key, date, result, records, errors, m:param1, ...)
Rule result upload successful
No content
Unauthorized
Forbidden
Unprocessable Entity
Internal Server Error
POST /api/rule_results HTTP/1.1
Content-Type: multipart/form-data
Accept: */*
Content-Length: 31
{
"rule_results": "file_content"
}No content
Perform a search for rule results with optional pagination and return the matching results.
Page number
0Page size
20Page number
0Page size
20Rule result search response
Unauthorized
Forbidden
Internal Server Error
POST /api/rule_results/search HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 52
{
"filters": {
"status": [
"failed"
]
},
"page": 0,
"size": 50
}{
"data": [
{
"id": 701,
"implementation_id": 10,
"inserted_at": "2026-03-30T06:37:42Z",
"result": 98,
"updated_at": "2026-03-30T06:37:42Z"
}
]
}Retrieve a specific rule result by its ID if the current user can view it.
Rule result ID
Rule result response
Unauthorized
Forbidden
Internal Server Error
GET /api/rule_results/{id} HTTP/1.1
Accept: */*
{
"data": {
"id": 701,
"implementation_id": 10,
"inserted_at": "2026-03-30T06:37:42Z",
"result": 98,
"updated_at": "2026-03-30T06:37:42Z"
}
}Delete the specified rule result record after authorization.
Rule result ID
Rule result deleted
No content
Unauthorized
Forbidden
Internal Server Error
DELETE /api/rule_results/{id} HTTP/1.1
Accept: */*
No content
Last updated