Authorization: Bearer ********************{
"page": 0, // obrigatório: >= 1
"limit": 25, // obrigatório: >= 0
"sort": [
{
"field": "created_at",
"direction": "desc"
}
],
"filters": [
// obrigatório: date YYYY-MM-DD
{
"field": "creation_date",
"operator": "between",
"value": [
"2025-01-01",
"2025-12-31"
]
}
// opcional: UUID da infração
// {
// "field": "infraction_report_id",
// "operator": "=",
// "value": "e2ce1ead-52be-4920-afe6-6bb53a9c0fa6"
// }
// opcional: aceito ("OPEN" "ACKNOWLEDGED" "CLOSED" "CANCELLED")
// {
// "field": "status",
// "operator": "=",
// "value": "CANCELLED"
// }
// opcional: aceito ("AGREED" "DISAGREED")
// {
// "field": "analysis_result",
// "operator": "=",
// "value": "AGREED"
// }
]
}{}