curl --location --request POST '/api/v1/transactions/list' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"dateStart": "2025-08-01",
"dateEnd": "2025-09-01",
"typeReport": "sales"
}
}'{
"status": 200,
"data": {
"Transactions": [{
"id": 1,
"TransactionsStatus": {
"id": 1,
"name": "Exitoso"
},
"amount": 200000,
"createdAt": "2022-11-21 12:38:00"
}]
}
}