POST
/
api
/
v1
/
wallets
/
account
/
{accountWalletId}
/
debit
curl --location 'https://api.recital.finance/api/wallets/account/accountWalletId/debit' \
--header 'Authorization: Bearer apiKey' \
--header 'Content-Type: application/json' \
--data-raw '{
  "amount": 100,
  "reference": "a",
  "currency": "NGN",
  "description": "test"
}'
{
  "reference": "TX-B5IKLCA3ZVKMAEVG",
  "link": "https://checkout-v2.dev-flutterwave.com/v3/hosted/pay/5b7a4f9b9047265",
  "status": "success",
  "message": "Hosted Link"
}
Note: This only debits the value on the Recital Wallet and DOES NOT call the provider.
amount
number
The amount to be debited from the wallet account.
reference
string
A unique identifier for the funding transaction.
description
string
A short description or note for the transaction (e.g., “Wallet settlement”).
currency
string
The currency to debit.
curl --location 'https://api.recital.finance/api/wallets/account/accountWalletId/debit' \
--header 'Authorization: Bearer apiKey' \
--header 'Content-Type: application/json' \
--data-raw '{
  "amount": 100,
  "reference": "a",
  "currency": "NGN",
  "description": "test"
}'
{
  "reference": "TX-B5IKLCA3ZVKMAEVG",
  "link": "https://checkout-v2.dev-flutterwave.com/v3/hosted/pay/5b7a4f9b9047265",
  "status": "success",
  "message": "Hosted Link"
}