curl --location 'https://api.chizmis.com/chizpay/v1.0/wallet-transactions' \
--header 'authorization;' \
--header 'Content-Type: application/json' \
--data '{
"senderAccountId": 1001,
"receiverAccountId": 2002,
"amount": 50,
"referenceNumber": "transfer_20260506_0001",
"nonce": "b3d9a8f2-7fb2-4f45-a22a-2c52b602ef74",
"timestamp": 1778062500000,
"signature": "hmac-sha256:5a7f..."
}'{
"success": true,
"response": {
"senderTx": {
"id": 50101,
"accountId": 1001,
"walletId": 9123,
"type": "SEND",
"bound": "OUT",
"amount": 50,
"status": "COMPLETED",
"referenceNumber": "transfer_20260506_0001"
},
"receiverTx": {
"id": 50102,
"accountId": 2002,
"walletId": 8450,
"type": "RECEIVE",
"bound": "IN",
"amount": 50,
"status": "COMPLETED",
"referenceNumber": "transfer_20260506_0001"
}
}
}