v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Infraction reports

List account infractions

List account infraction notifications.

Notifications are sorted in ascending order by the bacen_last_modified_datetime response return field.

get/v2/pix/infraction-reports

Query parameters

funds_recovery_idstring

Funds recovery identifier.

Returned from the Create funds recovery endpoint.

is_reporterboolean

Return notifications where the participant is the creator? Default is true.

is_counterpartyboolean

Return notifications where the participant is a counterparty? Default is true.

include_detailsboolean

Include details in response? Default is false.

status'' | 'OPEN' | 'ACKNOWLEDGED' | 'CLOSED' | 'CANCELLED'

Status filter, default is all ("").

modified_afterstring date-time

Only return infractions modified at this datetime or after. Format = RFC 3339. For example - 2023-04-12T23:20:50.52Z.

modified_beforestring date-time

Only return infractions modified at this datetime or before. Format = RFC 3339. For example - 2023-04-12T23:20:50.52Z.

limitinteger

Maximum results to return. Default is 20. Maximum is 200.

Headers

Authorizationstring required
Example:Bearer eyJhbGci...IUzUx

Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in a <b>401 Unauthorized</b> message.

Response

OK

has_more_elementsboolean required

Are there more items?

Example response

{
  "has_more_elements": true,
  "items": [
    {
      "id": "cfdff46e-5d58-45b8-b7aa-591a65f74444",
      "transaction_id": "E9999901012341234123412345678900",
      "reason": "REFUND_REQUEST",
      "situation_type": "SCAM",
      "status": "OPEN",
      "reporter_participant": "78265328",
      "counterparty_participant": "78265328",
      "bacen_creation_datetime": "2020-08-13T13:49:03Z",
      "bacen_last_modified_datetime": "2020-08-13T13:49:03Z",
      "details": "Details about infraction",
      "contact_information": {
        "phone": "551154874551",
        "email": "polly_ester@email.com"
      },
      "funds_recovery_id": "53D0F66A-BAB0-49D7-B7DC-807B82AABD8D",
      "infraction_amount": 1050.44
    }
  ]
}