curl --request POST \
--url /configuracao/emprestimo \
--header 'Content-Type: application/json' \
--data '{
"juros": 2.5,
"minimo_parcelamento": 2,
"maximo_parcelamento": 24
}'
curl ...
Mais detalhes em: https://documenter.getpostman.com/view/10111188/2sA3XWdymm
curl --location 'http://localhost:3005/api/prospect' \
--data-raw '{
"nome": "Lucas Neitzke",
"senha": "132456789",
"email": "[email protected]",
"documento": "101.247.089-00"
}'
curl ...
curl --request POST \
--url /goals \
--header 'Content-Type: application/json' \
--data '{
"target_date": "2026-04-04",
"name": "viagem",
"target_value": 12000,
"deduction_day": 25,
"account_number": 50445
}'
curl --request POST \
--url /goals/contribute \
--header 'Content-Type: application/json' \
--data '{
"goal_id": 2,
"amount": 500.5
}'
curl --request POST \
--url /goals/redeem \
--header 'Content-Type: application/json' \
--data '{
"goal_id": 2,
"amount": 500.5
}'
curl ...
curl ...
curl -X 'GET' \
'http://localhost:3003/api/movimentacao?numero=00000' \
-H 'accept: application/json'
curl ...
curl -X 'GET' \
'http://localhost:3003/api/conta/saldo/1' \
-H 'accept: application/json'