The Infraction Object

Object that represents a Pix infraction reported against a transaction.

PropertyTypeDescription
infraction_idStringUnique identifier of the infraction.
amountStringAmount involved in the infraction.
reasonStringReason for the infraction. Can be FRAUD or OPERATIONAL_FLAW.
statusStringCurrent status. Can be OPEN, ACKNOWLEDGED, CLOSED, or CANCELLED.
analysis_statusStringAnalysis result. Can be PENDING, AGREED, or DISAGREED.
creation_dateStringISO8601 datetime when the infraction was created.
due_dateStringISO8601 datetime deadline for responding to the infraction.
detailsStringHuman-readable description of the infraction.

Example

{
  "infraction_id": "INF-123456789",
  "amount": "150.00",
  "reason": "FRAUD",
  "status": "OPEN",
  "analysis_status": "PENDING",
  "creation_date": "2026-08-24T12:00:00Z",
  "due_date": "2026-09-01T23:59:59Z",
  "details": "Suspected fraud reported by payer PSP"
}