🚀 RMA Payment Gateway - Simple PHP Integration

How it works:

  1. Enter payment details below
  2. Click "Create Payment" to generate a payment link
  3. Customer clicks the payment link to complete payment
  4. All beneficiary details are automatically handled!

💻 Integration Code:

<?php
// Simple payment creation
$result = createRMAPayment(
    'your_api_key_here',
    'your_api_secret_here',
    100.00,                    // Amount
    'ORDER-2024-001',          // Order ID
    'customer@example.com',    // Customer email (optional)
    'Payment description'      // Description (optional)
);

if ($result['success']) {
    // Redirect to payment URL
    header('Location: ' . $result['data']['payment_url']);
    exit;
} else {
    echo 'Payment creation failed: ' . $result['message'];
}
?>

🔑 API Credentials:

API Key: rma_OKmXkjtDxP6ZIZI8V2sRUUDDUpdfkZPE

API Secret: ubEZf57F9jYaNDimP41B...

Endpoint: http://127.0.0.1:8000/api/payment/create