Authorization: Bearer ********************
curl --location --request POST 'https://horizon-api-sb.app.rpe.tech/api/v1/acheron/simulacao/compras' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"cliente": "2001",
"dataVenda": "2024-08-13T11:13:00Z",
"opcoesParcelamento": [
{
"idFormaPagamentoCartao": 6,
"parceladaPelaAdm": true
}
],
"numeroParcelas": [
6
],
"loja": 100,
"valorCompra": 11.11
}'
{
"simulacoes": [
{
"planoDeParcelamento": [
{
"parcelas": [
{
"valorParcela": 6.03
}
],
"numeroParcelas": 2,
"valorBase": 10,
"valorTotal": 12.06,
"vencimentoParcela": "2024-10-10"
}
]
}
]
}