Skip to main content
PUT
/
wallets
/
wallet
/
transaction
/
v2
/
wallet-to-wallet
Wallet to Wallet Transfers
curl --request PUT \
  --url https://waas-staging.embedly.ng/api/v1/wallets/wallet/transaction/v2/wallet-to-wallet \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "fromAccount": "<string>",
  "toAccount": "<string>",
  "amount": 123,
  "transactionReference": "<string>",
  "remarks": "<string>"
}
'
{
  "code": "200",
  "success": true,
  "message": "Transaction completed successfully.",
  "data": {
    // Additional transaction details if applicable
  }
}
fromAccount
string
required
The source account number for the transfer. Example: “3025831139”
toAccount
string
required
The destination account number for the transfer. Example: “211651183”
amount
number
required
The amount to transfer. Example: 100000
transactionReference
string
required
A unique reference identifier for the transaction. Example: “retw33344556670900”
remarks
string
Additional notes or description for the transaction. Example: “For Holidays”
{
  "code": "200",
  "success": true,
  "message": "Transaction completed successfully.",
  "data": {
    // Additional transaction details if applicable
  }
}