Skip to main content
GET
/
api
/
agent
/
verif-pay
Verify Transaction
curl --request GET \
  --url https://sandbox.soleaspay.com/api/agent/verif-pay \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <x-api-key>'
{
  "success": true,
  "code": 200,
  "status": "STATUS",
  "created_at": "2024-12-16 10:05:01",
  "data": {
    "operation": "OPERATION NAME",
    "reference": "MLS2021B",
    "external_reference": "abc1234",
    "transaction_reference": "transaction partner reference",
    "amount": 1000,
    "currency": "XAF"
  },
  "message": "Transaction is completed successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-key
string
required

Your API key for authentication

Example:

"g-fFowNzY7t2Yk-osvI8qmZ18BNL5TF-OwQNfANd6_ss"

operation
integer

Optional operation header

Example:

2

service
integer

Optional service header

Example:

1

Query Parameters

orderId
string
required

Your unique order ID for checking the payment

Example:

"3234173428"

payId
string
required

The SoleasPay payment reference (received from Pay-In API)

Example:

"MLS383B"

Response

200 - application/json

Transaction verification result

success
boolean
Example:

true

code
integer
Example:

200

status
string
Example:

"STATUS"

created_at
string<date-time>
Example:

"2024-12-16 10:05:01"

data
object
message
string
Example:

"Transaction is completed successfully"