Authorization: Bearer ********************
curl --location --request POST 'https://horizon-api-sb.app.rpe.tech/api/v1/lancamentos/vendas/antecipar-venda-avulsa' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"idPortador": 2001,
"idVenda": 2001,
"numeroParcela": 5
}'
{
"dataFaturamento": "2023-08-03T00:00:00",
"dataAntecipacao": "2023-08-03T00:00:00",
"dataVencimento": "2023-09-15T00:00:00.000-03:00",
"idPortador": 2001,
"idVenda": 2001,
"numeroParcela": 5,
"valorAntecipacao": 9.02,
"descontoAntecipacao": 0,
"valorFinal": 9.02
}