Skip to main content

Get transfer order by ID

GET/api/v1/transfer/query/orders/{bizId}HMAC

Retrieves a specific transfer order by its business ID.

Headers

NameTypeRequiredDescription
X-Api-KeystringrequiredAPI key identifier
X-SignaturestringrequiredHMAC-SHA256 signature
X-TimestampstringrequiredUnix timestamp in seconds
X-NoncestringrequiredUnique request identifier (UUID)

Path Parameters

NameTypeRequiredDescription
bizIdstringrequiredBusiness ID

Request Example

curl -X GET https://api.elaypay.app/api/v1/transfer/query/orders/<bizId> \
-H "X-Api-Key: sk_live_xxx" \
-H "X-Signature: <computed_signature>" \
-H "X-Timestamp: 1709337600" \
-H "X-Nonce: 550e8400-e29b-41d4-a716-446655440000"

Response

200Success
{
"version": "1.3.0",
"success": true,
"code": "2000",
"message": "SUCCESS",
"data": {
"bizId": "txn_ghi789",
"fromWalletId": "wlt_sender_001",
"toWalletId": "wlt_receiver_002",
"currency": "USD",
"amount": 100.5,
"feeAmount": 0.5,
"totalAmount": 101,
"status": 10060102,
"statusName": "COMPLETED",
"failureReason": null,
"remark": "Monthly payment",
"createdAt": "2026-03-02T11:20:00Z",
"completedAt": "2026-03-02T11:20:03Z"
}
}