curl --location '/TenantTransaction/TenantRequest/Transfer/Receive' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"askTenantId": 1,
"responseTenantId": 2,
"id": 10,
"debitAccountId": 101,
"creditAccountId": 202,
"currencyId": "USD",
"amount": 100,
"commissionCurrencyId": "USD",
"commissionAmount": 2,
"expressNumber": "EXP123456",
"senderName": "John Smith",
"senderPhone": "+123456789",
"receiverName": "Jane Doe",
"receiverPhone": "+987654321",
"note": "Sample transfer"
}'