Skip to main content
GET
/
client
/
transactions
/
{tx_ref}
/
verify
cURL
curl --request GET \
  --url https://sandbox-remote-api.rayda.co/api/v2/client/transactions/{tx_ref}/verify \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Transaction verified successfully",
  "data": {
    "tx_ref": "tx_ref_r_679e5fef0f3d2",
    "payment_method": "Card",
    "amount": "5050",
    "insurance": "252.5",
    "gateway_fee": "165.015",
    "onboarding_fee": "198",
    "device_config_fee": "0",
    "platform_fee": "0",
    "total_amount": "5665.515",
    "currency": "GBP",
    "status": "Fulfilled"
  }
}
This endpoint can also be used to complete order creation if the order was not automatically created by the webhook after a successful payment.

Authorizations

Authorization
string
header
required

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

Response

Transaction verified successfully

success
boolean
Example:

true

message
string
Example:

"Transaction verified successfully"

data
object