GET
/
api
/
REST
/
transaction-status
curl --request GET \
  --url https://sandbox.payblis.com/api/REST/transaction-status \
  --header 'Content-Type: <content-type>' \
  --header 'X-Merchant-Key: <api-key>' \
  --data '{
  "ref_order": "<string>"
}'
{
  "success": true,
  "status": "success",
  "data": {
    "amount": "19.99",
    "payment_fees": "0.29",
    "company_fees": "0.00",
    "total_net": "19.70",
    "is_3ds": false,
    "status": "paid",
    "created_at": "2025-03-11 13:11:30",
    "updated_at": "2025-03-11 13:11:35",
    "reference": "ORDER-123",
    "customer": {
      "name": "Doe",
      "email": "customer@example.com",
      "first_name": "John",
      "country": "France"
    },
    "store": {
      "name": "Example Store"
    },
    "merchant": {
      "id": "20",
      "name": "Test_merchant"
    }
  }
}

Authorizations

X-Merchant-Key
string
header
required

Headers

X-Merchant-Key
string
required

Your merchant key

Content-Type
string
default:application/json
required

Must be application/json

Body

application/json

Transaction reference

The body is of type object.

Response

200
application/json

Successful response

The response is of type object.