Skip to main content
GET
/
v1
/
global-collection
/
drc
/
inflow
/
providers
cURL
curl --request GET \
  --url https://api.nomba.com/v1/global-collection/drc/inflow/providers \
  --header 'Authorization: <authorization>' \
  --header 'accountId: <accountid>'
{
  "code": "00",
  "description": "Successful",
  "data": [
    {
      "code": "MPESA",
      "displayName": "Mpesa"
    },
    {
      "code": "AIRTEL",
      "displayName": "Airtel Money"
    },
    {
      "code": "ORANGE",
      "displayName": "Orange Money"
    }
  ]
}

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"

Response

200 - application/json

List of DRC inflow providers returned successfully.

code
string
Example:

"00"

description
string
Example:

"Successful"

data
object[]
Example:
[
{ "code": "MPESA", "displayName": "Mpesa" },
{
"code": "AIRTEL",
"displayName": "Airtel Money"
},
{
"code": "ORANGE",
"displayName": "Orange Money"
}
]