TODO — The source documentation for this endpoint was incomplete. The response body was not documented. Verify the following before publishing:
Endpoint
POST /clients/business/customers/funds/anonymous-transfer
Request body
Amount to transfer, in kobo.
The destination bank account number.
The bank code of the receiving bank.
A unique reference you generate for this transaction.
A description of the transfer.
Code examples
curl -X POST https://sandbox.stellasbank.com/api/v1/clients/business/customers/funds/anonymous-transfer \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "SECRET_KEY: YOUR_SECRET_KEY" \
-H "businessId: YOUR_BUSINESS_ID" \
-H "Content-Type: application/json" \
-d '{
"amount": 150000,
"receiverAccountNumber": "0123456789",
"receiverBankCode": "011",
"retrievalReference": "anon_txn_001",
"narration": "Anonymous payment"
}'