Create transfer order
POST
/api/v1/transfer/command/createHMACInitiates a wallet-to-wallet transfer. The order is processed asynchronously and returns with PENDING status.
Headers
Request Body
Request Example
curl -X POST https://api.elaypay.app/api/v1/transfer/command/create \
-H "X-Api-Key: sk_live_xxx" \
-H "X-Signature: <computed_signature>" \
-H "X-Timestamp: 1709337600" \
-H "X-Nonce: 550e8400-e29b-41d4-a716-446655440000" \
-H "Content-Type: application/json" \
-d '{
"idempotentKey": "txn_20260302_001",
"fromWalletId": "wlt_sender_001",
"toWalletId": "wlt_receiver_002",
"currency": "USD",
"amount": 100.5,
"remark": "Monthly payment"
}'