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_notificationsMETHOD
GETQUERY PARAMS
Field | Description |
---|---|
account_key | account_key of an account registered in the DDA |
status | status of a boleto |
min_str_start_date | Minimum start date of the operation |
max_str_start_date | Maximum start date of the operation |
page_number | Current page being queried |
page_size | Number of results per page |
Response
STATUS
200Response 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
400Response Body
{
"data": "{\"title\": \"Bad Request\", \"description\": \"Invalid request body.\", \"translation\": \"Corpo da requisição inválido.\", \"extra_fields\": {}, \"code\": \"LEG000069\"}"
}