Simulate Inflow (UAT only)
POST
/client-service/api/v1/webhook/publishInflow
WebHook
Request
Body Params application/json
TransactionInflowInput type
currency
string
required
accountNumber
string
required
amount
number
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
Body
TransactionInflowOutput type
message
string
optional
Example
{
"message": "inflow initiated"
}
🟠400Bad Request
🟠401Unauthorized