Toolkit
Active Configuration
Toolkit
Active Configuration
GET
/
active-conf
curl --request GET \
--url https://api.sandbox.pawapay.io/active-conf \
--header 'Authorization: Bearer <token>'
{
"merchantId": "MERCHANT_INC",
"merchantName": "Merchant Inc.",
"countries": [
{
"country": "GHA",
"correspondents": [
{
"correspondent": "AIRTELTIGO_GHA",
"currency": "GHS",
"ownerName": "Merchant Inc.",
"operationTypes": [
{
"operationType": "DEPOSIT",
"minTransactionLimit": "1",
"maxTransactionLimit": "1000"
},
{
"operationType": "PAYOUT",
"minTransactionLimit": "1",
"maxTransactionLimit": "1000"
},
{
"operationType": "REFUND",
"minTransactionLimit": "1",
"maxTransactionLimit": "1000"
}
]
},
{
"correspondent": "MTN_MOMO_GHA",
"currency": "GHS",
"ownerName": "Merchant Inc.",
"operationTypes": [
{
"operationType": "DEPOSIT",
"minTransactionLimit": "1",
"maxTransactionLimit": "2000"
},
{
"operationType": "PAYOUT",
"minTransactionLimit": "1",
"maxTransactionLimit": "2000"
},
{
"operationType": "REFUND",
"minTransactionLimit": "1",
"maxTransactionLimit": "2000"
}
]
}
]
},
{
"country": "ZMB",
"correspondents": [
{
"correspondent": "AIRTEL_OAPI_ZMB",
"currency": "ZMW",
"ownerName": "pawaPay Zambia",
"operationTypes": [
{
"operationType": "DEPOSIT",
"minTransactionLimit": "1",
"maxTransactionLimit": "10000"
}
]
},
{
"correspondent": "MTN_MOMO_ZMB",
"currency": "ZMW",
"ownerName": "pawaPay Zambia",
"operationTypes": [
{
"operationType": "DEPOSIT",
"minTransactionLimit": "1",
"maxTransactionLimit": "10000"
}
]
}
]
}
]
}
Allows you to query the MMOs (correspondents) that have been configured for your account. You can also retrieve supporting information about your configuration:
- Your company name on your pawaPay account.
- The currency for the MMO.
- Minimum and maximum amounts for deposits, payouts and refunds.
- The name of the company that is shown to the customer on the SMS receipt (
ownerName
).
Authorizations
See Authentication.
Response
200
application/json
If a request has been processed by pawaPay successfully.
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.sandbox.pawapay.io/active-conf \
--header 'Authorization: Bearer <token>'
{
"merchantId": "MERCHANT_INC",
"merchantName": "Merchant Inc.",
"countries": [
{
"country": "GHA",
"correspondents": [
{
"correspondent": "AIRTELTIGO_GHA",
"currency": "GHS",
"ownerName": "Merchant Inc.",
"operationTypes": [
{
"operationType": "DEPOSIT",
"minTransactionLimit": "1",
"maxTransactionLimit": "1000"
},
{
"operationType": "PAYOUT",
"minTransactionLimit": "1",
"maxTransactionLimit": "1000"
},
{
"operationType": "REFUND",
"minTransactionLimit": "1",
"maxTransactionLimit": "1000"
}
]
},
{
"correspondent": "MTN_MOMO_GHA",
"currency": "GHS",
"ownerName": "Merchant Inc.",
"operationTypes": [
{
"operationType": "DEPOSIT",
"minTransactionLimit": "1",
"maxTransactionLimit": "2000"
},
{
"operationType": "PAYOUT",
"minTransactionLimit": "1",
"maxTransactionLimit": "2000"
},
{
"operationType": "REFUND",
"minTransactionLimit": "1",
"maxTransactionLimit": "2000"
}
]
}
]
},
{
"country": "ZMB",
"correspondents": [
{
"correspondent": "AIRTEL_OAPI_ZMB",
"currency": "ZMW",
"ownerName": "pawaPay Zambia",
"operationTypes": [
{
"operationType": "DEPOSIT",
"minTransactionLimit": "1",
"maxTransactionLimit": "10000"
}
]
},
{
"correspondent": "MTN_MOMO_ZMB",
"currency": "ZMW",
"ownerName": "pawaPay Zambia",
"operationTypes": [
{
"operationType": "DEPOSIT",
"minTransactionLimit": "1",
"maxTransactionLimit": "10000"
}
]
}
]
}
]
}