curl --location --request POST 'https://your-api-server.com' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
"evento": "PEDIDO_PAGO",
"timestamp": "2026-04-01T15:00:00Z",
"dados": {
"pedido": {
"pedidoId": "ped_lw_001",
"status": "PAGO",
"valorTotal": 28.5,
"dataPagamento": "2026-04-01T14:45:00Z",
"transacoes": [
{
"transacaoId": "trx_001_20260401",
"status": "PAGO"
},
{
"transacaoId": "trx_002_20260401",
"status": "PAGO"
}
]
}
}
}'