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
- URL
- cURL
GET https://apisandbox.delbank.com.br/baas/api/v1/infraction-notifications
curl --request GET \
--url 'https://apisandbox.delbank.com.br/baas/api/v1/infraction-notifications' \
--header 'accept: application/json' \
--header 'x-delbank-api-key: PJPyJ2xGmyB9oDHyNIUwNOt1dgpgolBwcE16ybaKD5o1+JGdnXu3GSPnVzi3UKib/tPmW8y6c1WgUWpVvRDnY+0j3U/c5oEPAA8HHDmnU8iFYxWD2qpXZ2ZFfRIikoOL5KeXfMYUPvBW5kz0UhxYjw=='
Headers
Name | Description |
---|---|
x-delbank-api-key | Required. Chave de API |
Path params
Name | Default | Description |
---|---|---|
size | 50 | Use this to change how many values are returned |
page | 1 | Use 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
Name | Tipo | Description |
---|---|---|
currentPage | number | Current page |
pageSize | number | Size of results returned per page |
pageCount | number | Number of pages |
rowCount | number | Total quantity of items |
Response attributes:
Name | Type | Description |
---|---|---|
id | string | Infraction notification ID |
endToEndId | string | endToEndId of the transaction related to the infraction notification |
reason | enum | Infraction notification reason, Domains: FRAUD ,Refund request: RETURN_REQUEST ,Refund cancellation: RETURN_CANCELLATION |
type | enum | Scam/Fraud: SCAM_FRAUD ,Unauthorized transaction: UNAUTHORIZED_TRANSACTION ,Coercion crime: COERCION_CRIME ,Fraudulent access and authorization: FRAUDULENT_ACCESS_AUTHORIZATION ,Other: OTHER ,Unknown: UNKNOWN |
status | enum | PENDING , CANCELED , ACCEPTED , REJECTED |
debitedParticipant | object | Object containing information about the institution where the infraction notification was debited |
debitedParticipant.isbp | string | ISPB of the institution |
debitedParticipant.name | string | Name of the institution |
creditedParticipant | object | Object containing information about the institution where the infraction notification was credited |
creditedParticipant.isbp | string | ISPB of the institution |
creditedParticipant.name | string | Name of the institution |
infractionDetails | string | Description of the infraction |
analysisDetails | string | Details about the analysis of the infraction notification |
createdAt | date | Creation date |
updatedAt | date | Update date |
Fetch Infraction Notification by Id
Use este endpoint para retornar uma notificação de infração por Id
Request
- URL
- cURL
GET https://apisandbox.delbank.com.br/baas/api/v1/infraction-notifications/:id
curl --request GET \
--url https://apisandbox.delbank.com.br/baas/api/v1/infraction-notifications/:id \
--header 'accept: application/json' \
--header 'x-delbank-api-key: PJPyJ2xGmyB9oDHyNIUwNOt1dgpgolBwcE16ybaKD5o1+JGdnXu3GSPnVzi3UKib/tPmW8y6c1WgUWpVvRDnY+0j3U/c5oEPAA8HHDmnU8iFYxWD2qpXZ2ZFfRIikoOL5KeXfMYUPvBW5kz0UhxYjw=='
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:
Name | Type | Description |
---|---|---|
id | string | Infraction notification ID |
endToEndId | string | endToEndId of the transaction related to the infraction notification |
reason | enum | Infraction notification reason, Domains: FRAUD ,Refund request: RETURN_REQUEST ,Refund cancellation: RETURN_CANCELLATION |
details | string | Details about the type of infraction |
status | enum | PENDING , CANCELED , ACCEPTED , REJECTED |
debitedParticipant | object | Object containing information about the institution where the infraction notification was debited |
debitedParticipant.isbp | string | ISPB of the institution |
debitedParticipant.name | string | Name of the institution |
creditedParticipant | object | Object containing information about the institution where the infraction notification was credited |
creditedParticipant.isbp | string | ISPB of the institution |
creditedParticipant.name | string | Name of the institution |
analysisDetails | string | Details about the analysis of the infraction notification |
createdAt | date | Creation date |
updatedAt | date | Update date |