Skip to main content
GET
/
payments
/
{reference}
Check Payment Status
curl --request GET \
  --url https://getmipay.com/api/v1/payments/{reference} \
  --header 'X-API-KEY: <api-key>'
{
  "success": true,
  "data": {
    "reference": "MPAYIN_ABC123DEF456",
    "soleaspay_reference": "MLS690d472dd7ee7B",
    "amount": 1000,
    "currency": "XAF",
    "status": "success",
    "description": "Payment for Order #123",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "polling_attempts": 5,
    "last_polling_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

reference
string
required

Transaction reference ID (order_id or soleaspay_reference)

Response

Transaction status retrieved

success
boolean
Example:

true

data
object