Skip to main content
POST
https://waas-staging.embedly.ng
/
WaasCore
/
api
/
v1
/
nip
/
inflow
/
simulate-inflow
Inflow
curl --request POST \
  --url https://waas-staging.embedly.ng/WaasCore/api/v1/nip/inflow/simulate-inflow \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "beneficiaryAccountName": "<string>",
  "beneficiaryAccountNumber": "<string>",
  "amount": "<string>",
  "narration": "<string>"
}
'
{
  "code": "200",
  "success": true,
  "message": "Transaction completed successfully.",
  "data": {
    // Additional transaction details if applicable
  }
}
beneficiaryAccountName
string
required
The beneficiary account name for the inflow. Example: “Dataseed’s Wallet”
beneficiaryAccountNumber
string
required
The beneficiary account number for the inflow. Example: “9710005607”
amount
string
required
The amount to transfer. Maximum of 500 million Example: “10000000”
narration
string
required
Additional notes or description for the transaction. Example: “December Party Sweep”
{
  "code": "200",
  "success": true,
  "message": "Transaction completed successfully.",
  "data": {
    // Additional transaction details if applicable
  }
}