Skip to main content

Query an Infraction Notification

To fetch available Infraction Notifications you can use the endpoints below


List Available Infraction Notifications

Use this endpoint to return all paginated infraction notifications

Request

GET https://apisandbox.delbank.com.br/baas/api/v1/infraction-notifications

Headers

NameDescription
x-delbank-api-keyRequired. Chave de API

Path params

NameDefaultDescription
size50Use this to change how many values are returned
page1Use this along with size to search for a specific page in reference to the size of the page

Response:

[
{
"id": "00287f1e-aa85-452c-9ca6-d08d810c571c",
"endToEndId": "E38224857202501201735276EqueqSVM",
"reason": "RETURN_REQUEST",
"status": "PENDING",
"debitedParticipant": {
"ispb": "21018182",
"name": "BOLETOBANCÁRIO.COM TECNOLOGIA DE PAGAMENTOS LTDA."
},
"creditedParticipant": {
"ispb": "38224857",
"name": "DELBANK"
},
"infractionDetails": "01",
"analysisDetails": null,
"createdAt": "2022-04-07T10:25:32.793Z",
"updatedAt": "2025-02-13T16:35:13.907Z"
}
]

Response headers

NameTipoDescription
currentPagenumberCurrent page
pageSizenumberSize of results returned per page
pageCountnumberNumber of pages
rowCountnumberTotal quantity of items

Response attributes:

NameTypeDescription
idstringInfraction notification ID
endToEndIdstringendToEndId of the transaction related to the infraction notification
reasonenumInfraction notification reason, Domains: FRAUD,
Refund request: RETURN_REQUEST,
Refund cancellation: RETURN_CANCELLATION
typeenumScam/Fraud: SCAM_FRAUD,
Unauthorized transaction: UNAUTHORIZED_TRANSACTION,
Coercion crime: COERCION_CRIME,
Fraudulent access and authorization: FRAUDULENT_ACCESS_AUTHORIZATION,
Other: OTHER,
Unknown: UNKNOWN
statusenumPENDING, CANCELED, ACCEPTED, REJECTED
debitedParticipantobjectObject containing information about the institution where the infraction notification was debited
debitedParticipant.isbpstringISPB of the institution
debitedParticipant.namestringName of the institution
creditedParticipantobjectObject containing information about the institution where the infraction notification was credited
creditedParticipant.isbpstringISPB of the institution
creditedParticipant.namestringName of the institution
infractionDetailsstringDescription of the infraction
analysisDetailsstringDetails about the analysis of the infraction notification
createdAtdateCreation date
updatedAtdateUpdate date

Fetch Infraction Notification by Id

Use este endpoint para retornar uma notificação de infração por Id

Request

GET https://apisandbox.delbank.com.br/baas/api/v1/infraction-notifications/:id

Response:

{
"id": "00287f1e-aa85-452c-9ca6-d08d810c571c",
"endToEndId": "E38224857202501201735276EqueqSVM",
"reason": "RETURN_REQUEST",
"status": "PENDING",
"debitedParticipant": {
"ispb": "21018182",
"name": "BOLETOBANCÁRIO.COM TECNOLOGIA DE PAGAMENTOS LTDA."
},
"creditedParticipant": {
"ispb": "38224857",
"name": "DELBANK"
},
"infractionDetails": "01",
"analysisDetails": null,
"createdAt": "2022-04-07T10:25:32.793Z",
"updatedAt": "2025-02-13T16:35:13.907Z"
}

Response attributes:

NameTypeDescription
idstringInfraction notification ID
endToEndIdstringendToEndId of the transaction related to the infraction notification
reasonenumInfraction notification reason, Domains: FRAUD,
Refund request: RETURN_REQUEST,
Refund cancellation: RETURN_CANCELLATION
detailsstringDetails about the type of infraction
statusenumPENDING, CANCELED, ACCEPTED, REJECTED
debitedParticipantobjectObject containing information about the institution where the infraction notification was debited
debitedParticipant.isbpstringISPB of the institution
debitedParticipant.namestringName of the institution
creditedParticipantobjectObject containing information about the institution where the infraction notification was credited
creditedParticipant.isbpstringISPB of the institution
creditedParticipant.namestringName of the institution
analysisDetailsstringDetails about the analysis of the infraction notification
createdAtdateCreation date
updatedAtdateUpdate date