GET
/
v2
/
availability
curl --request GET \
  --url https://api.sandbox.pawapay.io/v2/availability \
  --header 'Authorization: Bearer <token>'
[
  {
    "country": "GHA",
    "providers": [
      {
        "provider": "VODAFONE_GHA",
        "operationTypes": [
          {
            "operationType": "DEPOSIT",
            "status": "OPERATIONAL"
          },
          {
            "operationType": "PAYOUT",
            "status": "DELAYED"
          }
        ]
      },
      {
        "provider": "MTN_MOMO_GHA",
        "operationTypes": [
          {
            "operationType": "DEPOSIT",
            "status": "OPERATIONAL"
          },
          {
            "operationType": "PAYOUT",
            "status": "OPERATIONAL"
          }
        ]
      },
      {
        "provider": "AIRTELTIGO_GHA",
        "operationTypes": [
          {
            "operationType": "DEPOSIT",
            "status": "CLOSED"
          },
          {
            "operationType": "PAYOUT",
            "status": "DELAYED"
          }
        ]
      }
    ]
  },
  {
    "country": "ZMB",
    "providers": [
      {
        "provider": "MTN_MOMO_ZMB",
        "operationTypes": [
          {
            "operationType": "DEPOSIT",
            "status": "CLOSED"
          },
          {
            "operationType": "PAYOUT",
            "status": "OPERATIONAL"
          }
        ]
      },
      {
        "provider": "AIRTEL_OAPI_ZMB",
        "operationTypes": [
          {
            "operationType": "DEPOSIT",
            "status": "OPERATIONAL"
          },
          {
            "operationType": "PAYOUT",
            "status": "DELAYED"
          }
        ]
      }
    ]
  }
]

Providers sometimes have instability in processing payments. Read more about MMO Stability.

Our 24/7 payment operations team constantly monitors all the providers available on our platform for any degraded performance or downtime. From this endpoint you can get the current processing status of each provider. This endpoint returns all providers grouped by country. Each operation type (DEPOSIT, PAYOUT, REFUND) has a separate status.

Following statuses are possible for different operations:

StatusDescription
OPERATIONALThe provider is operational and open for processing requests.
DELAYEDThe provider is having problems processing payouts. Payouts are being enqueued and will be processed once the problems have been resolved.
CLOSEDThe provider is having problems and all requests are being rejected by pawaPay.

Authorizations

Authorization
string
header
required

Query Parameters

country
string

The country in which the payment was initiated.

Format is ISO 3166-1 alpha-3, three character country code in upper case. Read more from Wikipedia.

Required string length: 3
Example:

"ZMB"

operationType
enum<string>

The operation for which you want to get provider availabiity information for.

Available options:
DEPOSIT,
PAYOUT,
REFUND

Response

200
application/json

If a request has been processed by pawaPay successfully.

The response is of type object[].