Multigate
  1. 💰 Accounts
Multigate
  • 🚀 Getting Started
  • 🔓 Authentication
    • Get Token
    • Refresh Token
    • Logout User
  • 👋 Onboarding
    • Create Subclient
    • Get All Subclients
    • Get Subclient
    • Update Subclient
    • Create Subclient Shareholder
    • Get Subclient Shareholders
    • Update Subclient Shareholder
    • Upload Subclient Documents
    • Get Subclient Documents
    • Delete Subclient
    • Submit Subclient
  • 💰 Accounts
    • 📄 Statements
      • Get Statement
    • Create Virtual Account
      POST
    • Get Account
      GET
    • Get Accounts By
      GET
    • Get All Accounts
      GET
    • Simulate Inflow (UAT only)
      POST
  • 🔃 Conversions
    • Get Quote
    • Lock Rate
    • Get Trade
    • Get All Trades
  • 💸 Payments
    • 🏦 Banks
      • Get Bank Details
    • 👤 Beneficiaries
      • Create Beneficiary
      • Get All Beneficiaries
      • Get Beneficiary
      • Update Beneficiary
      • Validate Beneficiary Account (NGN only)
    • Create Single Transfer
    • Get Purpose Codes
    • Get Transfer Fields & Fees
    • Find Transfers
  • 📩 Webhooks / Push Notifications
    • Add a New Client Configuration
    • Update Client Configuration Current Mode
    • Get Client Configuration
  1. 💰 Accounts

Simulate Inflow (UAT only)

POST
/client-service/api/v1/webhook/publishInflow
WebHook

Request

Body Params application/json
TransactionInflowInput type
currency
string 
required
Account currency (optional)
accountNumber
string 
required
Account number, which must be the funding account (required)
amount
number 
required
Amount (required)
Example
{
  "currency": "NGN",
  "accountNumber": "1238288951",
  "amount": 1000
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-gateway-uat.mmacs.io/platform/client-service/api/v1/webhook/publishInflow' \
--header 'Content-Type: application/json' \
--data-raw '{
    "currency": "NGN",
    "accountNumber": "1238288951",
    "amount": 1000
}'

Responses

🟢200OK
application/json
success response
Body
TransactionInflowOutput type
message
string 
optional
"inflow initiated" message
Example
{
  "message": "inflow initiated"
}
🟠400Bad Request
🟠401Unauthorized
Previous
Get All Accounts
Next
🔃 Conversions
Built with