Skip to main content
POST
/
v1
/
global-collection
/
mobile-money
/
initiate
cURL
curl --request POST \
  --url https://api.nomba.com/v1/global-collection/mobile-money/initiate \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'accountId: <accountid>' \
  --data '
{
  "phoneNumber": "0980802xxx",
  "pin": "0000",
  "callbackUrl": "https://your-server.com/webhook/collection",
  "amount": 10,
  "currency": "CDF",
  "topupVendor": "AIRTEL"
}
'
{
  "code": "00",
  "description": "Successful",
  "data": {
    "transactionReference": "a822e327-4bcd-40ec-ac61-ed3622eac000",
    "status": "PENDING",
    "message": "success"
  }
}

Headers

Authorization
string
required

Bearer token for authentication.

Example:

"Bearer <token>"

accountId
string
required

The parent accountId of the business.

Example:

"890022ce-bae0-45c1-9b9d-ee7872e6ca27"

Body

application/json
phoneNumber
string
required
Example:

"0980802xxx"

pin
string<password>
required
Example:

"0000"

callbackUrl
string
required
Example:

"https://your-server.com/webhook/collection"

amount
number
required
Example:

10

currency
string
required
Example:

"CDF"

topupVendor
string
required

Mobile money network provider (e.g. AIRTEL, MPESA).

Example:

"AIRTEL"

Response

200 - application/json

Inflow initiated successfully.

code
string
Example:

"00"

description
string
Example:

"Successful"

data
object