Skip to main content

List Boletos of Account Registered in DDA (bank slip notification) with filters

Method that allows listing of boleto titles from accounts registered in the DDA, enabling filtering by account_key, status, and time interval.

Request

ENDPOINT
/baas/dda/bankslip_notifications
METHOD
GET

QUERY PARAMS

FieldDescription
account_keyaccount_key of an account registered in the DDA
statusstatus of a boleto
min_str_start_dateMinimum start date of the operation
max_str_start_dateMaximum start date of the operation
page_numberCurrent page being queried
page_sizeNumber of results per page

Response

STATUS
200
Response Body
{
"data": [
{
"barcode": "00193000000001000000500000001234567890123456",
"status": "paid",
"total_value_in_cents": 999,
"expiration": "10/05/2023",
"recipient": {
"name": "Tech Solutions Ltda.",
"document": "12345678000100"
},
"payer": {
"name": "João Carlos",
"document": "12345678900"
}
}
],
"pagination": {
"current_page": 1,
"next_page": null,
"rows_per_page": 10
}
}
STATUS
400
Response Body
{
"data": "{\"title\": \"Bad Request\", \"description\": \"Invalid request body.\", \"translation\": \"Corpo da requisição inválido.\", \"extra_fields\": {}, \"code\": \"LEG000069\"}"
}