curl --location --request POST '/fidix/v1/transactions' \
--header 'traceparent: 00-0af7651916cd43dd8448eb211c80319c-b7ad6b7169203331-01' \
--header 'idempotency-key: {{idempotency_key}}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"ledger_id": "00000000-0000-0000-0000-000000000999",
"reference_id": "ref-001",
"currency": "ARS",
"description": "Pago de servicio",
"operations": [
{
"account_id": "4f5a2d7a-4c1e-4f2a-9e9a-1234567890ab",
"direction": "DEBIT",
"amount": "1500.00"
},
{
"account_id": "5a1d2c3e-4f67-8901-2345-6789abcde012",
"direction": "CREDIT",
"amount": "1500.00"
}
],
"metadata": {
"external_id": "ext-789"
}
}'